9
0
Fork 0

ARM: cfa10036: Remove the boot partition and boot from ext

Support for ext filesystems has been introduced recently. We can now
boot directly from our rootfs, loading the kernel and device tree
images from /boot.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Maxime Ripard 2013-02-27 11:03:07 +01:00 committed by Sascha Hauer
parent 2cc328ec2d
commit 3d61f0865b
2 changed files with 4 additions and 3 deletions

View File

@ -5,6 +5,6 @@ if [ "$1" = menu ]; then
exit
fi
global.bootm.image="/mnt/disk0.2/zImage-${global.hostname}"
global.bootm.oftree="/mnt/disk0.2/oftree-${global.board.variant}"
global.linux.bootargs.dyn.root="root=/dev/mmcblk0p4 rootfstype=ext3 rootwait"
global.bootm.image="/mnt/disk0.2/boot/zImage-${global.hostname}"
global.bootm.oftree="/mnt/disk0.2/boot/oftree-${global.board.variant}"
global.linux.bootargs.dyn.root="root=/dev/mmcblk0p3 rootfstype=ext3 rootwait"

View File

@ -39,5 +39,6 @@ CONFIG_I2C=y
CONFIG_MCI=y
CONFIG_MCI_STARTUP=y
CONFIG_MCI_MXS=y
CONFIG_FS_EXT4=y
CONFIG_FS_FAT=y
CONFIG_FS_FAT_LFN=y