mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-27 12:04:27 +01:00
Fix BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE which was never getting added
Make BR2_EXTERNAL paths relative to make things more absolute path independent.
This commit is contained in:
6
build
6
build
@@ -102,7 +102,7 @@ if "$configure"; then
|
|||||||
for p in $(find "${root_dir}/buildroot_patches/" -maxdepth 1 -name '*.patch' -print); do
|
for p in $(find "${root_dir}/buildroot_patches/" -maxdepth 1 -name '*.patch' -print); do
|
||||||
patch -N -r - -p 1 <"$p" || :
|
patch -N -r - -p 1 <"$p" || :
|
||||||
done
|
done
|
||||||
make O="$out_dir" BR2_EXTERNAL="${root_dir}/kernel_module:${root_dir}/gem5:${root_dir}/parsec-benchmark" "$defconfig"
|
make O="$out_dir" BR2_EXTERNAL="../kernel_module:../gem5:../parsec-benchmark" "$defconfig"
|
||||||
# TODO Can't get rid of these for now.
|
# TODO Can't get rid of these for now.
|
||||||
# http://stackoverflow.com/questions/44078245/is-it-possible-to-use-config-fragments-with-buildroots-config
|
# http://stackoverflow.com/questions/44078245/is-it-possible-to-use-config-fragments-with-buildroots-config
|
||||||
for config_fragment in $config_fragments; do
|
for config_fragment in $config_fragments; do
|
||||||
@@ -115,9 +115,9 @@ BR2_ROOTFS_POST_SCRIPT_ARGS=\"$post_script_args\"
|
|||||||
if "$gem5"; then
|
if "$gem5"; then
|
||||||
printf "BR2_PACKAGE_GEM5=y\n" >> "${config_file}"
|
printf "BR2_PACKAGE_GEM5=y\n" >> "${config_file}"
|
||||||
if [ -z "$linux_kernel_custom_config_file" ] && [ ! "$arch" = aarch64 ]; then
|
if [ -z "$linux_kernel_custom_config_file" ] && [ ! "$arch" = aarch64 ]; then
|
||||||
f="kernel_config_${arch_dir}"
|
f="../kernel_config_${arch_dir}"
|
||||||
if [ -f "$f" ]; then
|
if [ -f "$f" ]; then
|
||||||
printf "BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE=\"../$f\"\n" >> "${config_file}"
|
printf "BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE=\"$f\"\n" >> "${config_file}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user