summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2014-03-12 14:28:19 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2014-03-12 14:28:19 +0100
commit7b6d69722c0b3ccc25df1eaffa7c1c3052223e00 (patch)
tree120b2d610249a743fcfb169115dda91f6b416b0a /common
parent779aa107451ec3f66939a42b1c9b8667527d4fff (diff)
apalis/colibri_t20/30: hw boot partition support
The new production lot of Apalis T30 2GB V1.0C now features the new SK Hynix H26M42003GMR rather than Hynix H26M42002GMR. Even though both chips feature the same silicon they differ in respective eMMC firmware and therefore have a different hardware boot partition layout. This patch enables hardware boot partition support (via 'mmc dev [dev] [part]' command) and handles NVIDIA's proprietary NvFlash/Fastboot\ behaviour now putting their partition table in the second boot partition rather than the regular user area. While at it also get rid of the spurious 'video=tegrafb' kernel boot argument, adjust the optional ubiargs and add 'noatime' to the usbargs.
Diffstat (limited to 'common')
-rw-r--r--common/cmd_mmc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
index 5df66e431d..22f207f648 100644
--- a/common/cmd_mmc.c
+++ b/common/cmd_mmc.c
@@ -160,6 +160,11 @@ int initialize_mmc_device(int dev_num)
}
}
+int do_mmcinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+{
+ return initialize_mmc_device(0);
+}
+
U_BOOT_CMD(
mmcinfo, 1, 0, do_mmcinfo,
"display MMC info",