From 4e018d7d387f1a91ed6b8cb043caebf3669c52e9 Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Wed, 15 Aug 2012 09:34:33 -0500 Subject: [PATCH] mx5: switch to using ext2 by default Signed-off-by: Robert Nelson --- TODO | 5 ----- mk_mmc.sh | 12 ++---------- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/TODO b/TODO index 95e1d80..476d619 100644 --- a/TODO +++ b/TODO @@ -3,8 +3,3 @@ Easy: * random http link to *.deb package (--deb-file just needs to be extended to http case, as it works for local files) * move most of scripts/*tweaks.diff to scripts/*finish.sh as the *.diff is stuck with busybox limiations.. -More Effort: -* ext2 boot instead of vfat -**ti: omap3/4 will always need vfat for MLO bootloader -**freescale: mx51/53/6 has bootloader dd'd to boot device, could use ext2 over vfat.. -***imx6 is ext2 by default, mx51/53 need more testing.. diff --git a/mk_mmc.sh b/mk_mmc.sh index 12a0491..751b120 100755 --- a/mk_mmc.sh +++ b/mk_mmc.sh @@ -1242,6 +1242,7 @@ function populate_boot { dtb_file=${dtb_file} startup_script=${startup_script} boot_image=${boot} + boot_fstype=${boot_fstype} __EOF__ @@ -1544,7 +1545,7 @@ function is_imx { startup_script="uEnv.txt" - boot_fstype="fat" + boot_fstype="ext2" VIDEO_CONSOLE="console=tty0" HAS_IMX_BLOB=1 @@ -1702,8 +1703,6 @@ function check_uboot_type { dtb_addr="0x91ff0000" dtb_file="imx51-babbage.dtb" SERIAL_MODE=1 -#Planned, to be default with 2012.07... -# boot_fstype="ext2" ;; mx51evk_dtb) SYSTEM="mx51evk_dtb" @@ -1717,8 +1716,6 @@ function check_uboot_type { dtb_file="imx51-babbage.dtb" KERNEL_SEL="TESTING" SERIAL_MODE=1 -#Planned, to be default with 2012.07... -# boot_fstype="ext2" need_dtbs=1 ;; mx53loco) @@ -1732,8 +1729,6 @@ function check_uboot_type { dtb_addr="0x71ff0000" dtb_file="imx53-qsb.dtb" SERIAL_MODE=1 -#Planned, to be default with 2012.07... -# boot_fstype="ext2" ;; mx53loco_dtb) SYSTEM="mx53loco_dtb" @@ -1747,8 +1742,6 @@ function check_uboot_type { dtb_file="imx53-qsb.dtb" KERNEL_SEL="TESTING" SERIAL_MODE=1 -#Planned, to be default with 2012.07... -# boot_fstype="ext2" need_dtbs=1 ;; mx6q_sabrelite) @@ -1768,7 +1761,6 @@ function check_uboot_type { dtb_file="imx6q-sabrelite.dtb" KERNEL_SEL="TESTING" SERIAL_MODE=1 - boot_fstype="ext2" need_dtbs=1 boot_scr_wrapper=1 startup_script="6q_bootscript"