We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
musl-cross configures the kernel with a special default config on those archs. we need to evaluate whether this affects the generated headers.
# Get our Linux arch and defconfig LINUX_ARCH=`echo "$ARCH" | sed 's/-.*//'` LINUX_DEFCONFIG=defconfig case "$LINUX_ARCH" in i*86) LINUX_ARCH=i386 ;; arm*) LINUX_ARCH=arm ;; aarch64*) LINUX_ARCH=arm64 ;; mips*) LINUX_ARCH=mips ;; x32) LINUX_ARCH=x86_64 ;; powerpc* | ppc*) LINUX_ARCH=powerpc LINUX_DEFCONFIG=g5_defconfig ;; microblaze) LINUX_DEFCONFIG=mmu_defconfig ;; esac export LINUX_ARCH ... make $LINUX_DEFCONFIG ARCH=$LINUX_ARCH make headers_install ARCH=$LINUX_ARCH INSTALL_HDR_PATH="$CC_PREFIX/$TRIPLE"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
musl-cross configures the kernel with a special default config on those archs.
we need to evaluate whether this affects the generated headers.
The text was updated successfully, but these errors were encountered: