lfs-scripts/scripts/chapter5/5.4-linux-headers.sh

16 lines
214 B
Bash
Raw Normal View History

2023-01-08 09:54:09 +00:00
#!/bin/bash
cd $LFS/sources
2023-01-08 10:00:54 +00:00
tar xf linux-5.19.2.tar.xz
2023-01-08 09:54:09 +00:00
cd linux-5.19.2
make mrproper
make headers
find usr/include -type f ! -name '*.h' -delete
cp -rv usr/include $LFS/usr
2023-01-08 10:13:27 +00:00
cd $LFS/sources
rm -rf linux-5.19.2