mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
sparc: fix unknown escape sequence warnings
I don't know what exactly the code was going for, but the object code is the same before/after my change, and in looking at the env strings, this seems to be OK. Otherwise gcc warns: cc1: warning: unknown escape sequence: '\$' cc1: warning: unknown escape sequence: '\)' cc1: warning: unknown escape sequence: '\040' cc1: warning: unknown escape sequence: '\$' cc1: warning: unknown escape sequence: '\)' Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
8344a6d50b
commit
3a2b9f28c0
5 changed files with 5 additions and 5 deletions
|
@ -108,7 +108,7 @@
|
|||
"bootm ${kernel_addr}\0" \
|
||||
"flash_self=run ramargs addip;" \
|
||||
"bootm ${kernel_addr} ${ramdisk_addr}\0" \
|
||||
"getkernel=tftpboot \$\(scratch\)\ \$\(bootfile\)\0" \
|
||||
"getkernel=tftpboot $(scratch) $(bootfile)\0" \
|
||||
"bootargs=console=ttyS0,38400 root=/dev/nfs rw nfsroot=192.168.0.20:/export/rootfs ip=192.168.0.206:192.168.0.20:192.168.0.1:255.255.255.0:ax2000:eth0\0"
|
||||
|
||||
#if CONFIG_LEON_RAM_SELECT == CONFIG_LEON_RAM_SRAM
|
||||
|
|
|
@ -115,7 +115,7 @@
|
|||
"bootm ${kernel_addr} ${ramdisk_addr}\0" \
|
||||
"net_nfs=tftp 40000000 ${bootfile};run nfsargs addip;bootm\0" \
|
||||
"scratch=40800000\0" \
|
||||
"getkernel=tftpboot \$\(scratch\)\ \$\(bootfile\)\0" \
|
||||
"getkernel=tftpboot $(scratch) $(bootfile)\0" \
|
||||
"bootargs=console=ttyS0,38400 root=/dev/nfs rw nfsroot=192.168.0.20:/export/rootfs ip=192.168.0.207:192.168.0.20:192.168.0.1:255.255.255.0:ml401:eth0\0" \
|
||||
""
|
||||
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
"bootm ${kernel_addr} ${ramdisk_addr}\0" \
|
||||
"net_nfs=tftp 40000000 ${bootfile};run nfsargs addip;bootm\0" \
|
||||
"scratch=40200000\0" \
|
||||
"getkernel=tftpboot \$\(scratch\)\ \$\(bootfile\)\0" \
|
||||
"getkernel=tftpboot $(scratch) $(bootfile)\0" \
|
||||
"bootargs=console=ttyS0,38400 root=/dev/nfs rw nfsroot=192.168.0.20:/export/rootfs ip=192.168.0.206:192.168.0.20:192.168.0.1:255.255.255.0:grxc3s1500_daniel:eth0\0" \
|
||||
""
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
"net_nfs=tftp 40000000 ${bootfile};run nfsargs addip;bootm\0" \
|
||||
"rootpath=/export/roofs\0" \
|
||||
"scratch=40000000\0" \
|
||||
"getkernel=tftpboot \$\(scratch\)\ \$\(bootfile\)\0" \
|
||||
"getkernel=tftpboot $(scratch) $(bootfile)\0" \
|
||||
"ethaddr=00:00:7A:CC:00:12\0" \
|
||||
"bootargs=console=ttyS0,38400" \
|
||||
""
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
"net_nfs=tftp 40000000 ${bootfile};run nfsargs addip;bootm\0" \
|
||||
"rootpath=/export/roofs\0" \
|
||||
"scratch=40000000\0" \
|
||||
"getkernel=tftpboot \$\(scratch\)\ \$\(bootfile\)\0" \
|
||||
"getkernel=tftpboot $(scratch) $(bootfile)\0" \
|
||||
"ethaddr=00:00:7A:CC:00:12\0" \
|
||||
"bootargs=console=ttyS0,38400" \
|
||||
""
|
||||
|
|
Loading…
Reference in a new issue