mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
9 lines
256 B
Bash
Executable File
9 lines
256 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd buildroot
|
|
make BR2_EXTERNAL="$(pwd)/../kernel_module" qemu_x86_64_defconfig
|
|
cat ../buildroot_config_fragment >> .config
|
|
env -u LD_LIBRARY_PATH make BR2_JLEVEL="$(($(nproc) - 2))" kernel_module-rebuild all
|
|
cd ..
|
|
./runqemu "$@"
|