diff options
| author | Andrey Yurovsky <yurovsky@gmail.com> | 2017-11-27 19:27:22 -0800 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-11-29 22:11:53 +0100 |
| commit | 9e8e3e0fd556aeb62a5426506262fb1f9fe8a5fd (patch) | |
| tree | 0b65f6286e1a461e8f6e1429c00eff8a0c5e0b28 | |
| parent | eae85b620d8ae49e98dc5dfc4b1a11eed7946c26 (diff) | |
| download | buildroot-9e8e3e0fd556aeb62a5426506262fb1f9fe8a5fd.tar.gz buildroot-9e8e3e0fd556aeb62a5426506262fb1f9fe8a5fd.zip | |
rauc: select host-squashfs as a host dependency
The rauc host tool (used to generate update bundles) runs mksquashfs so
host-squashfs is required for it to work at runtime.
Signed-off-by: Andrey Yurovsky <yurovsky@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/rauc/Config.in.host | 1 | ||||
| -rw-r--r-- | package/rauc/rauc.mk | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/rauc/Config.in.host b/package/rauc/Config.in.host index a58685a2e6..1bd9a7935a 100644 --- a/package/rauc/Config.in.host +++ b/package/rauc/Config.in.host @@ -1,5 +1,6 @@ config BR2_PACKAGE_HOST_RAUC bool "host rauc" + select BR2_PACKAGE_HOST_SQUASHFS # run-time dependency help RAUC is the Robust Auto-Update Controller developed by Pengutronix. Enable this option to build the rauc diff --git a/package/rauc/rauc.mk b/package/rauc/rauc.mk index 479a583206..67ef1556e7 100644 --- a/package/rauc/rauc.mk +++ b/package/rauc/rauc.mk @@ -29,7 +29,7 @@ ifeq ($(BR2_PACKAGE_SYSTEMD),y) RAUC_DEPENDENCIES += systemd endif -HOST_RAUC_DEPENDENCIES = host-pkgconf host-openssl host-libglib2 +HOST_RAUC_DEPENDENCIES = host-pkgconf host-openssl host-libglib2 host-squashfs HOST_RAUC_CONF_OPTS += --disable-network --disable-json --disable-service $(eval $(autotools-package)) |

