diff options
| author | Eric Le Bihan <eric.le.bihan.dev@free.fr> | 2014-03-28 17:31:06 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-29 10:22:52 +0100 |
| commit | db7ad00586bd1c9b9d98396dda9c428d7b5c1dd8 (patch) | |
| tree | 581463eb9e86266a897d4cad482b8a0eb1423550 /package/systemd | |
| parent | c09dda8e56bcae694e9e06fd1056df5ad5a53cdd (diff) | |
| download | buildroot-db7ad00586bd1c9b9d98396dda9c428d7b5c1dd8.tar.gz buildroot-db7ad00586bd1c9b9d98396dda9c428d7b5c1dd8.zip | |
systemd: enable build for supported architectures.
Systemd only supports the architectures defined in
src/shared/architecture.h. So via a new parameter named
BR2_PACKAGE_SYSTEMD_ARCH_SUPPORTS, we enable the build of this package
only for those architectures.
Fixes http://autobuild.buildroot.net/results/bcc/bcce95eb0748505c0d62db21a6e420aae3c3181b/
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/systemd')
| -rw-r--r-- | package/systemd/Config.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package/systemd/Config.in b/package/systemd/Config.in index 838e13e24e..095fee0336 100644 --- a/package/systemd/Config.in +++ b/package/systemd/Config.in @@ -1,7 +1,14 @@ +config BR2_PACKAGE_SYSTEMD_ARCH_SUPPORTS + bool + # see src/shared/architecture.h + default y if BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || \ + BR2_mipsel || BR2_powerpc || BR2_sh4 || BR2_sh4eb || \ + BR2_sh4a || BR2_sh4aeb || BR2_sparc || BR2_x86_64 || \ + BR2_aarch64 || BR2_m68k + config BR2_PACKAGE_SYSTEMD bool "systemd" depends on BR2_INIT_SYSTEMD - depends on !BR2_avr32 # no epoll_create1 depends on BR2_LARGEFILE # util-linux depends on BR2_USE_WCHAR # util-linux depends on BR2_INET_IPV6 |

