diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-07-05 21:54:04 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-07-10 15:27:20 +0200 |
commit | 5391de7771b1d8f9d6f6f6fad7bb8a39247e31e9 (patch) | |
tree | c8a9f1af0ae6c18cfcd2f4423310be2909775d16 /boot/syslinux/Config.in | |
parent | 4346902ca9a0e91e915ba40a50a66d66941d3c67 (diff) | |
download | buildroot-novena-5391de7771b1d8f9d6f6f6fad7bb8a39247e31e9.tar.gz buildroot-novena-5391de7771b1d8f9d6f6f6fad7bb8a39247e31e9.zip |
syslinux: convert to GENTARGETS
Moreover, the installation of pxelinux and/or isolinux is now handled
as suboptions, like we traditionally do for other packages. This allows
to have a single option (BR2_TARGET_SYSLINUX) that enables the
syslinux package.
[Peter: drop basename in install step]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'boot/syslinux/Config.in')
-rw-r--r-- | boot/syslinux/Config.in | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/boot/syslinux/Config.in b/boot/syslinux/Config.in index 5650f91ba..60f3b8f9c 100644 --- a/boot/syslinux/Config.in +++ b/boot/syslinux/Config.in @@ -5,8 +5,12 @@ config BR2_TARGET_SYSLINUX The syslinux bootloader for x86 systems. This includes: syslinux, pxelinux, extlinux. -config BR2_TARGET_PXELINUX - bool "pxelinux" - depends on BR2_i386 || BR2_x86_64 - help - The pxelinux loader for x86 systems. +config BR2_TARGET_SYSLINUX_ISOLINUX + bool "Install isolinux" + depends on BR2_TARGET_SYSLINUX + default y + +config BR2_TARGET_SYSLINUX_PXELINUX + bool "Install pxelinux" + depends on BR2_TARGET_SYSLINUX + default y |