mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-30 08:31:03 +00:00
Fix typo in MCC200/PRS200 configuration
This commit is contained in:
parent
113f64e09a
commit
3b0ff842bf
1 changed files with 7 additions and 7 deletions
|
@ -120,10 +120,10 @@
|
||||||
|
|
||||||
#ifdef CONFIG_PRS200
|
#ifdef CONFIG_PRS200
|
||||||
# define CFG__BOARDNAME "prs200"
|
# define CFG__BOARDNAME "prs200"
|
||||||
# define LINUX_CONSOLE "ttyS0"
|
# define CFG__LINUX_CONSOLE "ttyS0"
|
||||||
#else
|
#else
|
||||||
# define CFG__BOARDNAME "mcc200"
|
# define CFG__BOARDNAME "mcc200"
|
||||||
# define LINUX_CONSOLE "ttyEU7"
|
# define CFG__LINUX_CONSOLE "ttyEU7"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
|
@ -143,7 +143,7 @@
|
||||||
"bootm ${kernel_addr} ${ramdisk_addr}\0" \
|
"bootm ${kernel_addr} ${ramdisk_addr}\0" \
|
||||||
"net_nfs=tftp 200000 ${bootfile};" \
|
"net_nfs=tftp 200000 ${bootfile};" \
|
||||||
"run nfsargs addip addcons;bootm\0" \
|
"run nfsargs addip addcons;bootm\0" \
|
||||||
"console=" MK_STR(LINUX_CONSOLE) "\0" \
|
"console=" LINUX_CONSOLE "\0" \
|
||||||
"rootpath=/opt/eldk/ppc_6xx\0" \
|
"rootpath=/opt/eldk/ppc_6xx\0" \
|
||||||
"bootfile=/tftpboot/" CFG__BOARDNAME "/uImage\0" \
|
"bootfile=/tftpboot/" CFG__BOARDNAME "/uImage\0" \
|
||||||
"load=tftp 200000 /tftpboot/" CFG__BOARDNAME "/u-boot.bin\0" \
|
"load=tftp 200000 /tftpboot/" CFG__BOARDNAME "/u-boot.bin\0" \
|
||||||
|
|
Loading…
Reference in a new issue