
15 Sep
2007
15 Sep
'07
4:05 a.m.
+#define CONFIG_EXTRA_ENV_SETTINGS \
"Image=tftp 0x80008000 Image\; go 0x80008000\0" \
"zImage=tftp 0x80180000 zImage\; go 0x80180000\0" \
"uImage=tftp 0x80180000 uImage\; bootm 0x80180000\0" \
"uboot=tftp 0x80008000 u-boot.bin\; go 0x80008000\0" \
"xloader=tftp 0x80180000 x-load.bin\; cp.w 0x80180000 0x00000400 0x1000\; go 0x00000400\0" \
Maximum line length exceeded.
I will rearrange it as coding style.
"syncmode50=mw.w 0x1e442 0xc0c4\; mw 0x6800a060 0xe30d1201\0" \
"syncmode=mw.w 0x1e442 0xe0f4\; mw 0x6800a060 0xe30d1201\0" \
"norboot=cp32 0x18040000 0x80008000 0x200000\; go 0x80008000\0" \
"oneboot=onenand read 0x80008000 0x40000 0x200000\; go 0x80008000\0"\
"onesyncboot=run syncmode oneboot\0" \
"bootcmd=run uboot\0"
Please remove the bogus backslash-escapes for the semicolons h.
Please note that booting a Linux kernel using the "go" command is not a good idea. I would not add this to a default environment.
For fast boot, we will use the uncompressed kernel and jump to kernel directly Yes I know it not common method. I can't pass any kernel parameters But it's used for internal use only.
If you don't mind I want to leave it as it was
Thank you, Kyungmin Park