We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adaab9b commit 7bb11b5Copy full SHA for 7bb11b5
include/configs/pistachio_bub.h
@@ -328,7 +328,11 @@
328
"saveenv;"
329
330
#define FINAL_BOOTCOMMAND \
331
- "bootm $loadaddr#$fitconf || reset;"
+ "if test -n ${fitconf}; then " \
332
+ "bootm $loadaddr#$fitconf || reset;" \
333
+ "else "\
334
+ "bootm $loadaddr || reset;" \
335
+ "fi;"
336
337
#define CONFIG_BOOTDELAY 2
338
#define CONFIG_SYS_BOOTCOUNT_ADDR 0x18102120
@@ -346,7 +350,6 @@
346
350
"boot_partition=0\0"\
347
351
"bootlimit=5\0"\
348
352
"fitfile=fitImage\0"\
349
- "fitconf=config@1\0"\
353
"bootm_verify=n\0"\
354
"rootpath=/srv/fs\0"\
355
"netroot=root=/dev/nfs rootfstype=nfs ip=dhcp\0"\
0 commit comments