-
-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Local bootloader not found during image creation #198
Comments
idk....
|
Here's my build log: As you can see, it searches for |
very very weird...
vs:
looks like it didn't pass the path... |
are you on git master? wonder how old the setup_sdcard.sh script is... https://github.com/RobertCNelson/omap-image-builder/commits/master/tools/setup_sdcard.sh |
Based on the lines 1512-1513 of setup_sdcard.sh in my initial message, it looks like it takes path from .conf file there only, ignoring the command line arguments. |
okay that's new enough.. |
I'd like to supply my local U-Boot build for the Beaglebone Black. I'm running the script with the following parameters:
It fails on
omap-image-builder/tools/setup_sdcard.sh
Lines 1512 to 1513 in 74c3f40
with
Adding extra check so that the if statement looks like
if [ "${conf_bl_distro_SPL}" ] && [ ! "${USE_LOCAL_BOOT}" ] ; then
fixes the error.A similar edit is applied to the subsequent if at
omap-image-builder/tools/setup_sdcard.sh
Line 1522 in 74c3f40
Apparently the cause is the script doesn't properly check
--spl
and--bootloader
options when creating backup version of u-boot, so thatconf_bl_distro_SPL
andconf_bl_distro_UBOOT
from configuration files take precedence.The text was updated successfully, but these errors were encountered: