mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-13 00:39:46 +00:00
15 lines
214 B
Bash
15 lines
214 B
Bash
#!/bin/bash
|
|
|
|
cd $LFS/sources
|
|
tar xf linux-5.19.2.tar.xz
|
|
cd linux-5.19.2
|
|
|
|
make mrproper
|
|
|
|
make headers
|
|
find usr/include -type f ! -name '*.h' -delete
|
|
cp -rv usr/include $LFS/usr
|
|
|
|
cd $LFS/sources
|
|
rm -rf linux-5.19.2
|
|
|