diff options
author | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2014-01-30 16:30:51 +0100 |
---|---|---|
committer | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2014-01-30 16:30:51 +0100 |
commit | 0246918bf15df63925813b62b611d148686fa372 (patch) | |
tree | e51fba074758935eca1ed4130868964a5cd61271 | |
parent | b492dad208af9b1ac8fbc9168055191f636d75e4 (diff) |
apalis/colibri_t20/t30: fix environment
Add some missing back slashes causing compilation failures.
-rw-r--r-- | include/configs/apalis_t30.h | 2 | ||||
-rw-r--r-- | include/configs/colibri_t20.h | 2 | ||||
-rw-r--r-- | include/configs/colibri_t30.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/apalis_t30.h b/include/configs/apalis_t30.h index fb7734a8c5c..e9f43ceddc0 100644 --- a/include/configs/apalis_t30.h +++ b/include/configs/apalis_t30.h @@ -115,7 +115,7 @@ "nfsargs=ip=:::::eth0:on root=/dev/nfs rw netdevwait\0" \ "setup=setenv setupargs gpt gpt_sector=${gptoffset} " \ "igb_mac=${ethaddr} no_console_suspend=1 console=tty1 " \ - "console=ttyS0,${baudrate}n8 debug_uartport=lsport,0 " + "console=ttyS0,${baudrate}n8 debug_uartport=lsport,0 " \ "${memargs} fbcon=map:1\0" \ "usbargs=root=/dev/sda2 rw rootwait\0" \ "usbboot=" USB_BOOTCMD "\0" \ diff --git a/include/configs/colibri_t20.h b/include/configs/colibri_t20.h index 9e3ab173f3d..59b7f9673b4 100644 --- a/include/configs/colibri_t20.h +++ b/include/configs/colibri_t20.h @@ -132,7 +132,7 @@ #else /* !__CONFIG_SDBOOT_H */ #define SD_BOOTCMD \ "run setup; " \ - "setenv bootargs ${defargs} ${mtdparts} ${sdargs} " + "setenv bootargs ${defargs} ${mtdparts} ${sdargs} " \ "${setupargs} ${vidargs}; " \ "echo Booting from MMC/SD card...; " \ "mmc read 0 ${loadaddr} ${lnxoffset} ${sd_kernel_size} && bootm" diff --git a/include/configs/colibri_t30.h b/include/configs/colibri_t30.h index 4e39d931a27..cfedd42a1c7 100644 --- a/include/configs/colibri_t30.h +++ b/include/configs/colibri_t30.h @@ -115,7 +115,7 @@ "nfsargs=ip=:::::eth0:on root=/dev/nfs rw netdevwait\0" \ "setup=setenv setupargs gpt gpt_sector=${gptoffset} " \ "asix_mac=${ethaddr} no_console_suspend=1 console=tty1 " \ - "console=ttyS0,${baudrate}n8 debug_uartport=lsport,0 " + "console=ttyS0,${baudrate}n8 debug_uartport=lsport,0 " \ "${memargs}\0" \ "usbargs=root=/dev/sda2 rw rootwait\0" \ "usbboot=" USB_BOOTCMD "\0" \ |