summaryrefslogtreecommitdiff
path: root/scripts/build/lb_source_disk
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-08-27 15:59:56 +0200
committerDaniel Baumann <daniel@debian.org>2012-08-27 16:05:49 +0200
commita0a5bbfd1c9b6fc58d1b102ee56fb7d3b8b7bfcf (patch)
tree584a8f8174bdcbafddb6652e469c5ae5381ce3da /scripts/build/lb_source_disk
parentd6e45a34376c9c80d1488ad4f3c9c1f85bedb338 (diff)
downloadvyos-live-build-a0a5bbfd1c9b6fc58d1b102ee56fb7d3b8b7bfcf.tar.gz
vyos-live-build-a0a5bbfd1c9b6fc58d1b102ee56fb7d3b8b7bfcf.zip
Dropping lb prefix from live-build scripts, not needed anymore.
Previously, we needed to keep the lb_* prefix as the scripts could also be executed standalone. Since the lb wrapper is mandatory since squeeze, we can drop this now.
Diffstat (limited to 'scripts/build/lb_source_disk')
-rwxr-xr-xscripts/build/lb_source_disk129
1 files changed, 0 insertions, 129 deletions
diff --git a/scripts/build/lb_source_disk b/scripts/build/lb_source_disk
deleted file mode 100755
index e51b74df3..000000000
--- a/scripts/build/lb_source_disk
+++ /dev/null
@@ -1,129 +0,0 @@
-#!/bin/sh
-
-## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org>
-##
-## 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 'install disk information into source')"
-HELP=""
-USAGE="${PROGRAM} [--force]"
-
-Arguments "${@}"
-
-# Reading configuration files
-Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
-Set_defaults
-
-case "${LB_SOURCE_IMAGES}" in
- iso*|hdd*)
- ;;
-
- *)
- exit 0
- ;;
-esac
-
-Echo_message "Begin installing disk information..."
-
-# Requiring stage file
-Require_stagefile .build/config .build/bootstrap
-
-# Checking stage file
-Check_stagefile .build/source_disk
-
-# Checking lock file
-Check_lockfile .lock
-
-# Creating lock file
-Create_lockfile .lock
-
-mkdir -p source/.disk
-
-DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | cut -b 1 | tr '[a-z]' '[A-Z]')"
-DISTRIBUTION="${DISTRIBUTION}$(echo ${LB_DISTRIBUTION} | cut -b 2-)"
-eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
-
-case "${LB_MODE}" in
- debian)
- TITLE="Debian GNU/Linux"
- STRING="Official Snapshot ${ARCHITECTURE}"
- TRACE="project/trace/ftp-master.debian.org"
- ;;
-
- ubuntu)
- TITLE="Ubuntu"
- STRING="Build ${ARCHITECTURE}"
- TRACE=""
- ;;
-
- kubuntu)
- TITLE="Kubuntu"
- STRING="Build ${ARCHITECTURE}"
- TRACE=""
- ;;
-
- progress)
- TITLE="Progress Linux"
- STRING="${VERSION} (${DISTRIBUTION}) - ${ARCHITECTURE}"
- TRACE="project/trace/archive-master.progress-linux.org"
- ;;
-
- *)
- TITLE="Debian GNU/Linux"
- STRING="Snapshot ${ARCHITECTURE}"
- TRACE=""
- ;;
-esac
-
-if [ -n "${TRACE}" ]
-then
- case "${LB_DERIVATIVE}" in
- true)
- echo "$(echo ${LB_PARENT_MIRROR_BOOTSTRAP} | awk -F:// '{ print $2 }'): $(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
- > source/.disk/archive_trace
-
- echo "$(echo ${LB_MIRROR_BOOTSTRAP} | awk -F:// '{ print $2 }'): $(wget -q ${LB_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
- >> source/.disk/archive_trace
- ;;
-
- false)
- echo "$(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
- > source/.disk/archive_trace
- ;;
- esac
-fi
-
-case "${LB_DEBIAN_INSTALLER}" in
- cdrom)
- echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/CD Source $(date +%Y%m%d-%H:%M)" > source/.disk/info
- ;;
-
- true|netinst)
- echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/NETINST Source $(date +%Y%m%d-%H:%M)" > source/.disk/info
- ;;
-
- live)
- echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/INSTALL Source $(date +%Y%m%d-%H:%M)" > source/.disk/info
- ;;
-
- businesscard)
- echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/BC Source $(date +%Y%m%d-%H:%M)" > source/.disk/info
- ;;
-
- false)
- echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE Source $(date +%Y%m%d-%H:%M)" > source/.disk/info
- ;;
-esac
-
-# Creating stage file
-Create_stagefile .build/source_disk