mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-01 03:51:31 +00:00
Polished the 85xx ADS config files
Made the boot commands use device trees by default. Also moved the ramdisk to 1000000 (I think the previous address was getting overridden during boot). Signed-off-by: Andy Fleming <afleming@freescale.com>
This commit is contained in:
parent
bfb37b32d1
commit
d3ec0d943a
2 changed files with 6 additions and 5 deletions
|
@ -520,7 +520,7 @@
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
"netdev=eth0\0" \
|
"netdev=eth0\0" \
|
||||||
"consoledev=ttyS0\0" \
|
"consoledev=ttyS0\0" \
|
||||||
"ramdiskaddr=600000\0" \
|
"ramdiskaddr=1000000\0" \
|
||||||
"ramdiskfile=your.ramdisk.u-boot\0" \
|
"ramdiskfile=your.ramdisk.u-boot\0" \
|
||||||
"fdtaddr=400000\0" \
|
"fdtaddr=400000\0" \
|
||||||
"fdtfile=your.fdt.dtb\0"
|
"fdtfile=your.fdt.dtb\0"
|
||||||
|
@ -540,7 +540,7 @@
|
||||||
"tftp $ramdiskaddr $ramdiskfile;" \
|
"tftp $ramdiskaddr $ramdiskfile;" \
|
||||||
"tftp $loadaddr $bootfile;" \
|
"tftp $loadaddr $bootfile;" \
|
||||||
"tftp $fdtaddr $fdtfile;" \
|
"tftp $fdtaddr $fdtfile;" \
|
||||||
"bootm $loadaddr $ramdiskaddr"
|
"bootm $loadaddr $ramdiskaddr $fdtaddr"
|
||||||
|
|
||||||
#define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
|
#define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
|
||||||
|
|
||||||
|
|
|
@ -559,8 +559,8 @@
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
"netdev=eth0\0" \
|
"netdev=eth0\0" \
|
||||||
"consoledev=ttyS0\0" \
|
"consoledev=ttyCPM\0" \
|
||||||
"ramdiskaddr=600000\0" \
|
"ramdiskaddr=1000000\0" \
|
||||||
"ramdiskfile=your.ramdisk.u-boot\0" \
|
"ramdiskfile=your.ramdisk.u-boot\0" \
|
||||||
"fdtaddr=400000\0" \
|
"fdtaddr=400000\0" \
|
||||||
"fdtfile=mpc8560ads.dtb\0"
|
"fdtfile=mpc8560ads.dtb\0"
|
||||||
|
@ -579,7 +579,8 @@
|
||||||
"console=$consoledev,$baudrate $othbootargs;" \
|
"console=$consoledev,$baudrate $othbootargs;" \
|
||||||
"tftp $ramdiskaddr $ramdiskfile;" \
|
"tftp $ramdiskaddr $ramdiskfile;" \
|
||||||
"tftp $loadaddr $bootfile;" \
|
"tftp $loadaddr $bootfile;" \
|
||||||
"bootm $loadaddr $ramdiskaddr"
|
"tftp $fdtaddr $fdtfile;" \
|
||||||
|
"bootm $loadaddr $ramdiskaddr $fdtaddr"
|
||||||
|
|
||||||
#define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
|
#define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue