Add network-scripts case in chapter 7 for systemd branch

This commit is contained in:
Pierre Labastie 2013-12-22 08:04:06 +00:00
parent 6ed3dd7533
commit 532ede6912

View file

@ -330,7 +330,8 @@ chapter78_Makefiles() {
# as a dependency. Also call the echo_message function. # as a dependency. Also call the echo_message function.
CHROOT_wrt_target "${this_script}" "$PREV" CHROOT_wrt_target "${this_script}" "$PREV"
# Find the bootscripts and kernel package names # Find the bootscripts or networkscripts (for systemd)
# and kernel package names
case "${this_script}" in case "${this_script}" in
*bootscripts) *bootscripts)
name="lfs-bootscripts" name="lfs-bootscripts"
@ -340,6 +341,14 @@ chapter78_Makefiles() {
fi fi
CHROOT_Unpack "$pkg_tarball" CHROOT_Unpack "$pkg_tarball"
;; ;;
*network-scripts)
name="lfs-network-scripts"
pkg_tarball=$(get_package_tarball_name $name)
if [ "${INSTALL_LOG}" = "y" ] ; then
CHROOT_wrt_TouchTimestamp
fi
CHROOT_Unpack "$pkg_tarball"
;;
*kernel) *kernel)
name="linux" name="linux"
pkg_tarball=$(get_package_tarball_name $name) pkg_tarball=$(get_package_tarball_name $name)
@ -370,6 +379,10 @@ chapter78_Makefiles() {
if [ "${INSTALL_LOG}" = "y" ] ; then if [ "${INSTALL_LOG}" = "y" ] ; then
CHROOT_wrt_LogNewFiles "$name" CHROOT_wrt_LogNewFiles "$name"
fi ;; fi ;;
*network-scripts) CHROOT_wrt_RemoveBuildDirs "dummy"
if [ "${INSTALL_LOG}" = "y" ] ; then
CHROOT_wrt_LogNewFiles "$name"
fi ;;
*kernel) CHROOT_wrt_RemoveBuildDirs "dummy" *kernel) CHROOT_wrt_RemoveBuildDirs "dummy"
if [ "${INSTALL_LOG}" = "y" ] ; then if [ "${INSTALL_LOG}" = "y" ] ; then
CHROOT_wrt_LogNewFiles "$name" CHROOT_wrt_LogNewFiles "$name"