-
Notifications
You must be signed in to change notification settings - Fork 76
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
Cannot build u-boot for beaglebone black #1
Comments
More specifically, this is what happens when I try to use the MLO and u-boot.img from the latest version (serial output): U-Boot 2019.07-rc4-00001-g68b90e57bc (Jun 13 2019 - 16:00:26 +0300) CPU : AM335X-GP rev 2.1 not set. Validating first E-fuse MAC And on my computer: Disk /dev/mmcblk0: 29.7 GiB, 31914983424 bytes, 62333952 sectors Device Boot Start End Sectors Size Id Type So there are partition tables and I copied MLO and u-boot.img, I also tried u-boot.bin and it didn't work |
did you managed to work it out? |
After building the toolchain and the example sqlite:
git clone git://git.denx.de/u-boot.git
cd u-boot/
git checkout v2017.01
export CROSS_COMPILE=arm-cortex_a8-linux-gnueabihf-
export ARCH=arm
make CROSS_COMPILE=arm-cortex_a8-linux-gnueabihf- am335x_boneblack_defconfig
make CROSS_COMPILE=arm-cortex_a8-linux-gnueabihf-
And I get the following:
.
.
.
CC arch/arm/cpu/armv7/cache_v7.o
cc1: warning: target CPU does not support THUMB instructions
{standard input}: Assembler messages:
{standard input}:42: Error: selected processor does not support
dsb sy' in ARM mode {standard input}:46: Error: selected processor does not support
isb sy' in ARM mode{standard input}:240: Error: selected processor does not support
dsb sy' in ARM mode {standard input}:244: Error: selected processor does not support
isb sy' in ARM mode{standard input}:368: Error: selected processor does not support
dsb sy' in ARM mode {standard input}:460: Error: selected processor does not support
dsb sy' in ARM mode{standard input}:464: Error: selected processor does not support
isb sy' in ARM mode {standard input}:594: Error: selected processor does not support
dsb sy' in ARM modescripts/Makefile.build:280: recipe for target 'arch/arm/cpu/armv7/cache_v7.o' failed
make[1]: *** [arch/arm/cpu/armv7/cache_v7.o] Error 1
Makefile:1217: recipe for target 'arch/arm/cpu/armv7' failed
make: *** [arch/arm/cpu/armv7] Error 2
If I try to use the latest master branch of u-boot it compiles but I have to use
make CROSS_COMPILE=arm-cortex_a8-linux-gnueabihf- am335x_boneblack_vboot_defconfig
And then when trying to boot u-boot I get "Unrecognized filesystem type" on the serial and it continuously tries to boot from PXE...
Assistance would be appreciated.
The text was updated successfully, but these errors were encountered: