Skip to content
Snippets Groups Projects
Commit 3aae66e2 authored by Guillaume GARDET's avatar Guillaume GARDET Committed by Tom Rini
Browse files

am335x_evm: Add boot script support to am335x_evm


This patch adds boot script support to am335x_evm

Signed-off-by: default avatarGuillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@ti.com>
parent 10226f29
Branches
Tags
No related merge requests found
...@@ -115,6 +115,9 @@ ...@@ -115,6 +115,9 @@
"nfsroot=${serverip}:${rootpath},${nfsopts} rw " \ "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \
"ip=dhcp\0" \ "ip=dhcp\0" \
"bootenv=uEnv.txt\0" \ "bootenv=uEnv.txt\0" \
"loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
"bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
"source ${loadaddr}\0" \
"loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
"importbootenv=echo Importing environment from mmc ...; " \ "importbootenv=echo Importing environment from mmc ...; " \
"env import -t -r $loadaddr $filesize\0" \ "env import -t -r $loadaddr $filesize\0" \
...@@ -142,6 +145,9 @@ ...@@ -142,6 +145,9 @@
"mmcboot=mmc dev ${mmcdev}; " \ "mmcboot=mmc dev ${mmcdev}; " \
"if mmc rescan; then " \ "if mmc rescan; then " \
"echo SD/MMC found on device ${mmcdev};" \ "echo SD/MMC found on device ${mmcdev};" \
"if run loadbootscript; then " \
"run bootscript;" \
"else " \
"if run loadbootenv; then " \ "if run loadbootenv; then " \
"echo Loaded environment from ${bootenv};" \ "echo Loaded environment from ${bootenv};" \
"run importbootenv;" \ "run importbootenv;" \
...@@ -153,6 +159,7 @@ ...@@ -153,6 +159,7 @@
"if run loadimage; then " \ "if run loadimage; then " \
"run mmcloados;" \ "run mmcloados;" \
"fi;" \ "fi;" \
"fi ;" \
"fi;\0" \ "fi;\0" \
"spiboot=echo Booting from spi ...; " \ "spiboot=echo Booting from spi ...; " \
"run spiargs; " \ "run spiargs; " \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment