You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've implemented the following patch on my bitbake recipes.
I think it would be wise to implement it in your git.
Basically, a LOT of people are experiencing boot issues with the beagle.
The problem is that u-boot is waiting for any-key to interrupt boot.
Meaning that the slightiest ghost signal on uart-0 interrupts boot.
I've put "s" for stop. and put a message. But feel free to put any letter.
Nothing could be worse than any-key.
I've implemented the following patch on my bitbake recipes.
I think it would be wise to implement it in your git.
Basically, a LOT of people are experiencing boot issues with the beagle.
The problem is that u-boot is waiting for any-key to interrupt boot.
Meaning that the slightiest ghost signal on uart-0 interrupts boot.
I've put "s" for stop. and put a message. But feel free to put any letter.
Nothing could be worse than any-key.
Here's the patch
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h
index 20f84a6..d058b6a 100644
--- a/include/configs/am335x_evm.h
+++ b/include/configs/am335x_evm.h
@@ -207,6 +207,9 @@
#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
#define CONFIG_SYS_I2C_MULTI_EEPROMS
+#define CONFIG_AUTOBOOT_KEYED 1
+#define CONFIG_AUTOBOOT_STOP_STR "s"
+#define CONFIG_AUTOBOOT_PROMPT \
#define CONFIG_POWER_TPS65217
#define CONFIG_POWER_TPS65910
The text was updated successfully, but these errors were encountered: