diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2012-11-09 13:54:09 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-14 22:53:25 +0100 |
commit | ff3391323a2baa8c1238d795ec82701dacb77c6f (patch) | |
tree | 74523efbaa01951754bc609cb828eac0d07bc44b /fs/iso9660/Config.in | |
parent | bac970e99d751dd58561313a38311962ea0a79f1 (diff) | |
download | buildroot-novena-ff3391323a2baa8c1238d795ec82701dacb77c6f.tar.gz buildroot-novena-ff3391323a2baa8c1238d795ec82701dacb77c6f.zip |
iso9660 fs: use cpio initrd instead of ext2
The ext2 initrd is pretty broken, because it requires an additional
root=/dev/ram0 command line parameter, and a /init to mount
devtmps that isn't there in out ext2 rootfs. So just use a cpio
instead.
Note that there is no check if the kernel supports initramfs or the
selected compression method.
Also removed a bit of dead code in iso9660.mk.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'fs/iso9660/Config.in')
-rw-r--r-- | fs/iso9660/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/iso9660/Config.in b/fs/iso9660/Config.in index 4c00583dc..98ff78b0b 100644 --- a/fs/iso9660/Config.in +++ b/fs/iso9660/Config.in @@ -2,7 +2,7 @@ config BR2_TARGET_ROOTFS_ISO9660 bool "iso image" depends on (BR2_i386 || BR2_x86_64) depends on BR2_LINUX_KERNEL - select BR2_TARGET_ROOTFS_EXT2 + select BR2_TARGET_ROOTFS_CPIO select BR2_TARGET_GRUB help Build a bootable iso9660 image |