Lines Matching refs:script
17 The *source* command is used to execute a script file from memory.
19 Two formats for script files exist:
30 location of the script file in memory, defaults to CONFIG_SYS_LOAD_ADDR.
61 default = "script-1";
63 script-1 {
65 type = "script";
69 script-2 {
71 type = "script";
80 script = "script-1";
84 script = "script-2";
95 In U-Boot the script can be loaded and execute like this
102 ## Executing script at 00000000
105 ## Executing script at 00000000
107 => source $loadaddr:script-1
108 ## Executing script at 00000000
110 => source $loadaddr:script-2
111 ## Executing script at 00000000
114 ## Executing script at 00000000
117 ## Executing script at 00000000
120 ## Executing script at 00000000
122 => source ':script-1'
123 ## Executing script at 00000000
126 ## Executing script at 00000000
140 script {
142 type = "script";
150 A script file using the legacy U-Boot image file format can be created based on
155 echo Hello from a script
162 mkimage -T script -n 'Test script' -d boot.txt boot.scr
164 The script can be execute in U-boot like this:
171 ## Executing script at 00000000
172 Hello from a script
175 ## Executing script at 00000000
176 Hello from a script