summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Michel CASAUBON <jean-michel.casaubon@csgroup.eu>2023-11-09 11:58:33 +0000
committerChristophe Leroy <christophe.leroy@csgroup.eu>2024-04-18 15:47:46 +0200
commited36a27a758af2514949670adbe9f11297da4302 (patch)
tree5c4f217327e1d4327ee261d66c3f76d75a84b12c
parent2c3fa4b8add3cb6a440184ab67debc6867d383c0 (diff)
board: cssi: Fix MCR3000 board environment
Remove a stray semicolon in MCR3000 board environment. Signed-off-by: Jean-Michel CASAUBON <jean-michel.casaubon@csgroup.eu> Reviewed-by: DUBOIS Hugo <hugo.dubois.ext@csgroup.eu> Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
-rw-r--r--board/cssi/mcr3000/mcr3000.env2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/cssi/mcr3000/mcr3000.env b/board/cssi/mcr3000/mcr3000.env
index 372ab09094d..380c10c4ce7 100644
--- a/board/cssi/mcr3000/mcr3000.env
+++ b/board/cssi/mcr3000/mcr3000.env
@@ -8,7 +8,7 @@ dhcp_ip=ip=:::::eth0:dhcp
console_args=console=ttyCPM0,115200N8
loadkernel=ubi part nand0;ubifsmount ubi0;ubifsload ${loadaddr} /boot/${filename};ubifsumount; ubi detach
bootcmd=run flashboot
-flashboot=setenv bootargs ${console_args} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:mcr3k:eth0:off;${ofl_args}; run loadkernel; bootm ${loadaddr}
+flashboot=setenv bootargs ${console_args} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:mcr3k:eth0:off ${ofl_args}; run loadkernel; bootm ${loadaddr}
tftpboot=setenv bootargs ${console_args} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:mcr3k:eth0:off ${ofl_args}; tftp ${loadaddr} ${filename}; bootm ${loadaddr}
dhcpboot=dhcp ${loadaddr} ${filename};setenv bootargs ${console_args} ${dhcp_ip} ${ofl_args}; bootm ${loadaddr}
update=echo 'Updating ubi image'; if tftp 0x2000 $ubifile; then nand erase.chip; nand write 0x2000 0x00 $filesize; fi