From: Michael Prokop Date: Fri, 27 Jan 2017 13:09:13 +0000 (+0100) Subject: Drop grml-live-compat from Suggests, update code + comments accordingly X-Git-Tag: v0.28.1~6 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=d82e1ccc5cb0af5b213deb29627c1bf6d8cc7162 Drop grml-live-compat from Suggests, update code + comments accordingly grml-live-compat is no longer relevant, so let's get rid of it. --- diff --git a/debian/control b/debian/control index c6a8181..29a09af 100644 --- a/debian/control +++ b/debian/control @@ -34,8 +34,7 @@ Recommends: grml-live-db, ipxe, syslinux-utils Suggests: fai-doc, - grml-live-addons, - grml-live-compat + grml-live-addons Description: build system for creating a Grml (based) Linux live system This package provides the build system for creating a Debian / Grml based Linux live system (also known as live cd). It is diff --git a/grml-live b/grml-live index 4093eb4..7929599 100755 --- a/grml-live +++ b/grml-live @@ -279,12 +279,12 @@ extend_string_end() { # This is because: # * We assume that the chroot always has a "good" version of # the file. Also it makes sources handling easier. -# * On unstable, we Recommend the Debian packages containing +# * On unstable, we recommend the Debian packages containing # these files. The user can override them by putting his # "better" version into the chroot. -# * On stable, the Debian packages are probably not available, -# or outdated, so we look in TEMPLATE_DIRECTORY/compat first, where -# our grml-live-compat package installs current file versions. +# * With older releases the Debian packages are probably +# not available, so we look in TEMPLATE_DIRECTORY/compat, +# where a (custom) package might install current file versions. copy_addon_file() { DEST="${BUILD_OUTPUT}/boot/$3" if [ ! -d "${DEST}/" ]; then @@ -296,7 +296,7 @@ copy_addon_file() { return $? fi if [ -e "${TEMPLATE_DIRECTORY}/compat/$3/$1" ]; then - log "Copying $1 from grml-live-compat" + log "Copying $1 from ${TEMPLATE_DIRECTORY}/compat" cp "${TEMPLATE_DIRECTORY}/compat/$3/$1" "${DEST}/" return $? fi @@ -935,7 +935,7 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amd64 ] ; then log "Boot addons not found, skipping therefore. (Consider installing package grml-live-addons)" ewarn "Boot addons not found, skipping therefore. (Consider installing package grml-live-addons)" ; eend 0 else - # copy addons from system packages or grml-live-compat + # copy addons from system packages or grml-live-addons copy_addon_file ipxe.lkrn /usr/lib/ipxe addons copy_addon_file pci.ids /usr/share/misc addons copy_addon_file memtest86+.bin /boot addons