Hi
When booting on BBB, the delay is 0 as belows
So It is difficult to set the eeprom by skipping immediately without delay.
Before compiling u-boot, the following was set through ‘make menuconfig’.
I compiled u-boot through the shell script below.
When I run make menuconfig again, “delay in seconds before automatically booting” is changed to 0.
and when uboot is installed into the sd card and BBB is executed, “Press SPACE to abort autoboot in 0 seconds” appears and there is no delay.
Could you let me know how to make a delay ( 2 secconds )
@taek8461 , correct CONFIG_BOOTDELAY controls that, just change the 0 to a 2 in the patch:
diff --git a/configs/am335x_evm_defconfig b/configs/am335x_evm_defconfig
index a6a237f783..41aa4f2b19 100644
--- a/configs/am335x_evm_defconfig
+++ b/configs/am335x_evm_defconfig
@@ -4,69 +4,51 @@ CONFIG_TI_COMMON_CMD_OPTIONS=y
CONFIG_AM33XX=y
CONFIG_SPL=y
CONFIG_DISTRO_DEFAULTS=y
-CONFIG_SPL_LOAD_FIT=y
-CONFIG_OF_BOARD_SETUP=y
+CONFIG_BOOTDELAY=0
CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run update_to_fit; fi; run findfdt; run init_console; run envboot; run distro_bootcmd"
CONFIG_SYS_CONSOLE_INFO_QUIET=y
CONFIG_VERSION_VARIABLE=y
CONFIG_ARCH_MISC_INIT=y
-# CONFIG_SPL_FS_EXT4 is not set
-CONFIG_SPL_MTD_SUPPORT=y
CONFIG_SPL_MUSB_NEW_SUPPORT=y
-CONFIG_SPL_NET_SUPPORT=y
-CONFIG_SPL_NET_VCI_STRING="AM33xx U-Boot SPL"
+# CONFIG_SPL_NAND_SUPPORT is not set
Regards,
Hi~
I resolved it.
Thank you so much