10 lines
255 B
Bash
Executable File
10 lines
255 B
Bash
Executable File
set -e
|
|
cores=$(nproc)
|
|
echo "${cores}"
|
|
/usr/bin/make clean
|
|
/usr/bin/make defconfig
|
|
cat ./.config | python3 /update_kernel_make_config.py
|
|
cat ./.config | python3 /update_kernel_make_config.py > ./.config
|
|
/usr/bin/make olddefconfig
|
|
/usr/bin/make -j ${cores}
|