9 lines
170 B
Text
9 lines
170 B
Text
|
cd /usr/src/linux
|
||
|
|
||
|
make HOSTCC="$CC" headers
|
||
|
|
||
|
find usr/include -name \*.h -type f | while read -r file; do
|
||
|
mkdir -p "$1/${file%/*}"
|
||
|
cp -f "$file" "$1/$file"
|
||
|
done
|