-
Notifications
You must be signed in to change notification settings - Fork 159
BASE_ARCH=aarch64 is Ignored #239
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
Comments
I should additionally point out that the script is properly downloading the arm64 image:
However, I finally figured out that this is erroneously sneaking into the configuration via
Looks like this is being set somewhere in |
Tracking this down further, it appears that
The file being created in |
Something in the last month or so is making the value set of
BASE_ARCH
skew from what is set in the configuration. Given the following config:I would expect
BASE_ARCH=aarch64
to be fixed. However when the code gets to the selection of qemu-arm-static insrc/custompios
the value is being reset toBASE_ARCH=armhf
and I'm not entirely sure where:Note that I've added some debugging and changes to
custompios
to try to figure out what's happening. By the time the build process gets here,BASE_ARCH
is being change fromaarch64
toarmhf
.The text was updated successfully, but these errors were encountered: