Add 6.5 - Build coreutils

This commit is contained in:
Aditya 2023-01-09 11:14:30 +05:30
parent 6a3a783ac7
commit b57e8b5e9d
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,33 @@
#!/bin/bash
cd $LFS/sources
tar xf coreutils-9.1.tar.xz
cd coreutils-9.1
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess) \
--enable-install-program=hostname \
--enable-no-install-program=kill,uptime
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make DESTDIR=$LFS install
mv -v $LFS/usr/bin/chroot $LFS/usr/sbin
mkdir -pv $LFS/usr/share/man/man8
mv -v $LFS/usr/share/man/man1/chroot.1 $LFS/usr/share/man/man8/chroot.8
sed -i 's/"1"/"8"/' $LFS/usr/share/man/man8/chroot.8
cd $LFS/sources
rm -rf coreutils-9.1

View file

@ -227,4 +227,15 @@ then
stop_script "chapter6/6.4-bash.sh"
fi
# Chapter 6.5
# ===========
echo "Building coreutils"
su - lfs -c "bash $PWD/chapter6/6.5-coreutils.sh"
# Exit on error
check_exit_code
if [ $exit_status -ne 0 ]
then
stop_script "chapter6/6.5-ncurses.sh"
fi