Skip to content

Commit

Permalink
unipi-tools: Fix binaries install
Browse files Browse the repository at this point in the history
The binaries were missing execution bit set and also we were missing the
libmodbus dependency in the rootfs.

Changelog-entry: Fix unipi-tools binaries installation
Signed-off-by: Florin Sarbu <florin@balena.io>
  • Loading branch information
floion committed Apr 29, 2021
1 parent 4d5a703 commit 49214a4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ SRC_URI = "git://git@git.unipi.technology/UniPi/unipi-tools.git;protocol=https"
inherit systemd

DEPENDS += "libmodbus systemd"
RDEPENDS_${PN} += "libmodbus"

SRCREV = "1.2.44"

Expand Down Expand Up @@ -34,7 +35,7 @@ do_install() {

# install the tools
install -d ${D}/opt/unipi/tools
install -m 0644 \
install -m 0755 \
${S}/unipi_tcp_server \
${S}/fwspi \
${S}/fwserial \
Expand Down

0 comments on commit 49214a4

Please sign in to comment.