diff options
author | Jason Liu <r64343@freescale.com> | 2013-11-14 14:37:31 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2013-11-15 10:52:25 +0800 |
commit | e505325b92b26fda58b30a42fc21ca57791ae9e7 (patch) | |
tree | 53f30843f485252e70902a38780d468a672460bb /board | |
parent | 84db283d36295a2d778b2cfe3e2957509ff1dc78 (diff) | |
download | u-boot-imx-e505325b92b26fda58b30a42fc21ca57791ae9e7.zip u-boot-imx-e505325b92b26fda58b30a42fc21ca57791ae9e7.tar.gz u-boot-imx-e505325b92b26fda58b30a42fc21ca57791ae9e7.tar.bz2 |
ENGR00288064 set the mmcdev number dynamiclly according to the boot slot
For the SPI/WEIM NOR, it can't store all the images into it due to it's
capacity, we need one default mmc device to load the left image or rootfs.
The end user need change the default setting according to their needs.
For NAND/SATA boot, the storage is big enough to hold all the stuff.
For SD/MMC boot, mmcdev is dynamiclly created due to the boot SD/MMC slot.
Signed-off-by: Jason Liu <r64343@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx6qsabresd/mx6qsabresd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/mx6qsabresd/mx6qsabresd.c b/board/freescale/mx6qsabresd/mx6qsabresd.c index 335e32c..aa53541 100644 --- a/board/freescale/mx6qsabresd/mx6qsabresd.c +++ b/board/freescale/mx6qsabresd/mx6qsabresd.c @@ -361,6 +361,8 @@ int mmc_get_env_devno(void) dev_no--; + setenv_ulong("mmcdev", dev_no); + return dev_no; } |