diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-11-04 17:31:41 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-11-04 17:51:36 +0100 |
commit | fee4e8b349cf7c126834df63548683a5814a4c74 (patch) | |
tree | f9b6a7235c15e3baf5024a878d07356c51088c03 /scripts | |
parent | 9987bdcc1a4e94e0d86d8d2632f9fa132a7800a6 (diff) | |
download | vyos-live-build-fee4e8b349cf7c126834df63548683a5814a4c74.tar.gz vyos-live-build-fee4e8b349cf7c126834df63548683a5814a4c74.zip |
Rewriting chroot_includes in python.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/chroot | 2 | ||||
-rwxr-xr-x | scripts/build/chroot_includes | 50 |
2 files changed, 1 insertions, 51 deletions
diff --git a/scripts/build/chroot b/scripts/build/chroot index ef4db8744..a91118ce9 100755 --- a/scripts/build/chroot +++ b/scripts/build/chroot @@ -68,7 +68,7 @@ do done lb chroot_live-packages ${@} -lb chroot_includes ${@} +lb chroot-includes ${@} lb chroot-hooks ${@} lb chroot_hacks ${@} lb chroot_interactive ${@} diff --git a/scripts/build/chroot_includes b/scripts/build/chroot_includes deleted file mode 100755 index c0dd75d6f..000000000 --- a/scripts/build/chroot_includes +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh - -## live-build(7) - System Build Scripts -## Copyright (C) 2006-2013 Daniel Baumann <mail@daniel-baumann.ch> -## -## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -## This is free software, and you are welcome to redistribute it -## under certain conditions; see COPYING for details. - - -set -e - -# Including common functions -[ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh - -# Setting static variables -DESCRIPTION="$(Echo 'copy files into chroot')" -HELP="" -USAGE="${PROGRAM} [--force]" - -Arguments "${@}" - -# Reading configuration files -Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Set_defaults - -Echo_message "Begin copying chroot includes..." - -# Requiring stage file -Require_stagefile .build/config .build/bootstrap - -# Checking stage file -Check_stagefile .build/includes.chroot - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -if Find_files config/includes.chroot/ -then - # Copying includes - cd config/includes.chroot - find . | cpio -dmpu --no-preserve-owner "${OLDPWD}"/chroot - cd "${OLDPWD}" - - # Creating stage file - Create_stagefile .build/chroot_includes -fi |