mirror of
https://github.com/arjuncr/Linux-from-scratch.git
synced 2026-01-15 00:37:17 +00:00
16 lines
259 B
Bash
Executable File
16 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ./build_env_0.sh
|
|
|
|
echo "kernel header"
|
|
|
|
cd source/linux
|
|
|
|
mkdir ${OS}/usr/include
|
|
make mrproper
|
|
make ARCH=${OS_ARCH} headers_check && \
|
|
make ARCH=${OS_ARCH} INSTALL_HDR_PATH=dest headers_install
|
|
cp -rv dest/include/* ${OS}/usr/include
|
|
|
|
cd ../..
|