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