mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
14 lines
258 B
Bash
Executable File
14 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/unpack linux
|
|
|
|
cd $(kernel_path)
|
|
make ARCH=$TARGET_ARCH headers_check
|
|
make ARCH=$TARGET_ARCH INSTALL_HDR_PATH=dest headers_install
|
|
|
|
mkdir -p $SYSROOT_PREFIX/usr/include
|
|
cp -R dest/include/* $SYSROOT_PREFIX/usr/include
|
|
|