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

12 lines
177 B
Bash
Raw Normal View History

2023-01-08 09:54:09 +00:00
#!/bin/bash
cd $LFS/sources
tar xvf 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