diffstat of debian/ for live-build_2.0.12-2 live-build_2.0.12-2gnewsense4 README.gNewSense | 3 changelog | 29 + control | 10 live-build.links | 1 patches/series | 1 patches/support-gnewsense-mode.patch | 554 +++++++++++++++++++++++++++++++++++ rules | 7 source/format | 2 8 files changed, 601 insertions(+), 6 deletions(-) diff -Nru live-build-2.0.12/debian/README.gNewSense live-build-2.0.12/debian/README.gNewSense --- live-build-2.0.12/debian/README.gNewSense 1970-01-01 00:00:00.000000000 +0000 +++ live-build-2.0.12/debian/README.gNewSense 2014-02-04 19:51:55.000000000 +0000 @@ -0,0 +1,3 @@ +Changed-From-Debian: Support gNewSense, branding. +Change-Type: Modified + diff -Nru live-build-2.0.12/debian/changelog live-build-2.0.12/debian/changelog --- live-build-2.0.12/debian/changelog 2019-03-09 10:02:00.000000000 +0000 +++ live-build-2.0.12/debian/changelog 2014-02-04 19:50:28.000000000 +0000 @@ -1,3 +1,32 @@ +live-build (2.0.12-2gnewsense4) parkes; urgency=low + + * Also include GUI installer for gnewsense-release mode. + + -- Sam Geeraerts Tue, 04 Feb 2014 20:50:03 +0100 + +live-build (2.0.12-2gnewsense3) parkes; urgency=low + + * Use archive.gnewsense.org for real releases (Closes: SV #39873). + + -- Sam Geeraerts Wed, 29 Jan 2014 19:40:24 +0100 + +live-build (2.0.12-2gnewsense2) parkes; urgency=low + + * Add the missing debian-cd entry for Parkes. (Closes: SV #40181). + + -- River Chiang Thu, 31 Oct 2013 01:31:29 +0800 + +live-build (2.0.12-2gnewsense1) parkes; urgency=low + + [ Michał Masłowski ] + * Add support for building gNewSense Parkes live media. + * Remove example hooks for installation of nonfree software. + + [ Sam Geeraerts ] + * Use Galaxia's syslinux artwork. + + -- Sam Geeraerts Sun, 05 May 2013 17:17:12 +0200 + live-build (2.0.12-2) unstable; urgency=low * Adding preinst script to remove diff -Nru live-build-2.0.12/debian/control live-build-2.0.12/debian/control --- live-build-2.0.12/debian/control 2019-03-09 10:02:00.000000000 +0000 +++ live-build-2.0.12/debian/control 2013-11-16 18:49:15.000000000 +0000 @@ -1,13 +1,13 @@ Source: live-build Section: misc Priority: optional -Maintainer: Debian Live Project -Uploaders: Daniel Baumann +Maintainer: gNewSense Hackers +XSBC-Original-Maintainer: Debian Live Project Build-Depends: debhelper (>= 7.0.50~) Standards-Version: 3.9.1 Homepage: http://live.debian.net/devel/live-build/ -Vcs-Browser: http://live.debian.net/gitweb/?p=live-build.git -Vcs-Git: git://live.debian.net/git/live-build.git +Vcs-Browser: http://bzr.savannah.gnu.org/lh/gnewsense/packages-parkes/live-build/ +Vcs-Bzr: bzr://bzr.savannah.gnu.org/gnewsense/packages-parkes/live-build/ Package: live-build Architecture: all @@ -18,7 +18,7 @@ Suggests: dosfstools, genisoimage, memtest86+ | memtest86, mtools, parted, squashfs-tools | genext2fs | mtd-tools, sudo | fakeroot, syslinux | grub, - uuid-runtime, win32-loader + syslinux-theme-galaxia, uuid-runtime, win32-loader Description: Debian Live - System Build Scripts live-build contains the scripts that build a Debian Live system image from a configuration directory. diff -Nru live-build-2.0.12/debian/live-build.links live-build-2.0.12/debian/live-build.links --- live-build-2.0.12/debian/live-build.links 1970-01-01 00:00:00.000000000 +0000 +++ live-build-2.0.12/debian/live-build.links 2013-11-16 18:49:15.000000000 +0000 @@ -0,0 +1 @@ +/usr/share/live/build/data/debian-cd/squeeze /usr/share/live/build/data/debian-cd/parkes diff -Nru live-build-2.0.12/debian/patches/series live-build-2.0.12/debian/patches/series --- live-build-2.0.12/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ live-build-2.0.12/debian/patches/series 2013-04-06 20:31:31.000000000 +0000 @@ -0,0 +1 @@ +support-gnewsense-mode.patch diff -Nru live-build-2.0.12/debian/patches/support-gnewsense-mode.patch live-build-2.0.12/debian/patches/support-gnewsense-mode.patch --- live-build-2.0.12/debian/patches/support-gnewsense-mode.patch 1970-01-01 00:00:00.000000000 +0000 +++ live-build-2.0.12/debian/patches/support-gnewsense-mode.patch 2014-02-04 19:49:34.000000000 +0000 @@ -0,0 +1,554 @@ +Description: Add support for building gNewSense Parkes live media. +Origin: vendor +Forwarded: no +Author: Michał Masłowski +Last-Update: 2014-02-04 +--- a/functions/defaults.sh ++++ b/functions/defaults.sh +@@ -35,6 +35,10 @@ + ubuntu) + LB_DISTRIBUTION="karmic" + ;; ++ ++ gnewsense|gnewsense-release) ++ LB_DISTRIBUTION="parkes" ++ ;; + esac + fi + +@@ -81,7 +85,7 @@ + + # Setting apt recommends + case "${LB_MODE}" in +- debian|debian-release|ubuntu) ++ debian|debian-release|ubuntu|gnewsense|gnewsense-release) + LB_APT_RECOMMENDS="${LB_APT_RECOMMENDS:-true}" + ;; + +@@ -219,6 +223,10 @@ + ubuntu) + LB_ROOT="ubuntu-live" + ;; ++ ++ gnewsense|gnewsense-release) ++ LB_ROOT="gnewsense-live" ++ ;; + esac + fi + +@@ -308,6 +316,14 @@ + ;; + esac + ;; ++ ++ gnewsense) ++ LB_MIRROR_BOOTSTRAP="http://beta.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; ++ ++ gnewsense-release) ++ LB_MIRROR_BOOTSTRAP="http://archive.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; + esac + fi + +@@ -336,6 +352,15 @@ + ;; + esac + ;; ++ ++ gnewsense) ++ LB_MIRROR_CHROOT_SECURITY="http://beta.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; ++ ++ gnewsense-release) ++ LB_MIRROR_CHROOT_SECURITY="http://archive.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; ++ + esac + fi + +@@ -410,6 +435,15 @@ + ;; + esac + ;; ++ ++ gnewsense) ++ LB_MIRROR_BINARY="http://beta.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; ++ ++ gnewsense-release) ++ LB_MIRROR_BINARY="http://archive.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; ++ + esac + fi + +@@ -436,6 +470,15 @@ + ;; + esac + ;; ++ ++ gnewsense) ++ LB_MIRROR_BINARY_SECURITY="http://beta.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; ++ ++ gnewsense-release) ++ LB_MIRROR_BINARY_SECURITY="http://archive.gnewsense.org/gnewsense-three/gnewsense/" ++ ;; ++ + esac + fi + +@@ -534,6 +577,10 @@ + ubuntu) + LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-ubuntu-keyring}" + ;; ++ ++ gnewsense|gnewsense-release) ++ LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-debian-archive-keyring gnewsense-archive-keyring}" ++ ;; + esac + + # Setting language string +@@ -650,7 +697,7 @@ + if [ -z "${LB_LINUX_PACKAGES}" ] + then + case "${LB_MODE}" in +- debian|debian-release|embedian) ++ debian|debian-release|embedian|gnewsense|gnewsense-release) + case "${LB_DISTRIBUTION}" in + lenny) + LB_LINUX_PACKAGES="linux-image-2.6 \${LB_UNION_FILESYSTEM}-modules-2.6" +@@ -819,7 +866,7 @@ + + # Setting image type + case "${LB_DISTRIBUTION}" in +- squeeze|sid) ++ squeeze|sid|parkes) + case "${LB_ARCHITECTURE}" in + amd64|i386) + LB_BINARY_IMAGES="${LB_BINARY_IMAGES:-iso-hybrid}" +@@ -876,7 +923,7 @@ + + # Setting debian-installer-gui + case "${LB_MODE}" in +- debian) ++ debian|gnewsense|gnewsense-release) + LB_DEBIAN_INSTALLER_GUI="${LB_DEBIAN_INSTALLER_GUI:-true}" + ;; + +@@ -956,6 +1003,10 @@ + LB_HOSTNAME="ubuntu" + ;; + ++ gnewsense|gnewsense-release) ++ LB_HOSTNAME="gnewsense" ++ ;; ++ + *) + LB_HOSTNAME="debian" + ;; +@@ -977,6 +1028,10 @@ + ubuntu) + LB_ISO_APPLICATION="Ubuntu Live" + ;; ++ ++ gnewsense|gnewsense-release) ++ LB_ISO_APPLICATION="gNewSense Live" ++ ;; + esac + fi + +@@ -1006,6 +1061,15 @@ + ubuntu) + LB_ISO_VOLUME="Ubuntu ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)" + ;; ++ ++ gnewsense) ++ LB_ISO_VOLUME="gNewSense ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)" ++ ;; ++ ++ gnewsense-release) ++ eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`" ++ LB_ISO_VOLUME="gNewSense ${VERSION} ${LB_ARCHITECTURE} live" ++ ;; + esac + fi + +@@ -1049,6 +1113,10 @@ + ubuntu) + LB_NET_ROOT_PATH="/srv/ubuntu-live" + ;; ++ ++ gnewsense|gnewsense-release) ++ LB_NET_ROOT_PATH="/srv/gnewsense-live" ++ ;; + esac + fi + +@@ -1065,7 +1133,14 @@ + # LB_SYSLINUX_CFG + + # Setting syslinux splash +- # LB_SYSLINUX_SPLASH ++ case "${LB_MODE}" in ++ gnewsense|gnewsense-release) ++ LB_SYSLINUX_SPLASH="${LB_SYSLINUX_SPLASH:-/usr/share/syslinux/themes/galaxia/galaxia-blue-installer.png}" ++ ;; ++ ++ *) ++ ;; ++ esac + + LB_SYSLINUX_TIMEOUT="${LB_SYSLINUX_TIMEOUT:-0}" + +@@ -1074,7 +1149,7 @@ + + # Setting syslinux menu live entries + case "${LB_MODE}" in +- debian|debian-release) ++ debian|debian-release|gnewsense|gnewsense-release) + LB_SYSLINUX_MENU_LIVE_ENTRY="${LB_SYSLINUX_MENU_LIVE_ENTRY:-Live}" + LB_SYSLINUX_MENU_LIVE_ENTRY_FAILSAFE="${LB_SYSLINUX_MENU_LIVE_ENTRY_FAILSAFE:-${LB_SYSLINUX_MENU_LIVE_ENTRY} (failsafe)}" + ;; +--- a/functions/releases.sh ++++ b/functions/releases.sh +@@ -23,3 +23,6 @@ + RELEASE_lucid="10.04" # LTS + RELEASE_maverick="10.10" + RELEASE_natty="11.04" ++ ++# gNewSense releases ++RELEASE_parkes="3.0" +--- a/lists/debian-forensics ++++ b/lists/debian-forensics +@@ -28,7 +28,7 @@ + + ## Packages available as of squeeze + +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + aesfix + aeskeyfind + afflib-tools +--- a/lists/debian-live-devel ++++ b/lists/debian-live-devel +@@ -14,7 +14,7 @@ + #if DISTRIBUTION lenny + qemu + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + bridge-utils lxc kvm + #endif + +@@ -22,7 +22,7 @@ + + # build + debootstrap cdebootstrap +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + multistrap + #endif + build-essential debhelper devscripts fakechroot fakeroot lintian wdiff +--- a/lists/debian-live-pxe-server ++++ b/lists/debian-live-pxe-server +@@ -7,7 +7,7 @@ + #if DISTRIBUTION lenny + dhcp3-server + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + isc-dhcp-server + #endif + +@@ -15,7 +15,7 @@ + syslinux-common + tftpd-hpa + +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + debian-installer-netboot-amd64 + debian-installer-netboot-i386 + #endif +--- a/lists/gnome ++++ b/lists/gnome +@@ -6,7 +6,7 @@ + gdm-themes + #endif + gnome-desktop-environment gnome-screensaver gnome-themes-extras +-#if MODE debian ++#if MODE debian gnewsense + system-config-printer + #endif + #if MODE ubuntu +--- a/lists/gnome-core ++++ b/lists/gnome-core +@@ -6,7 +6,7 @@ + #if DISTRIBUTION lenny + gdm + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + gdm3 + #endif + desktop-base +--- a/lists/gnome-full ++++ b/lists/gnome-full +@@ -6,6 +6,6 @@ + #if DISTRIBUTION lenny + gdm + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + gdm3 + #endif +--- a/lists/kde ++++ b/lists/kde +@@ -5,7 +5,7 @@ + #if DISTRIBUTION lenny + kde + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + kde-standard + #endif + kdm +--- a/lists/kde-core ++++ b/lists/kde-core +@@ -5,7 +5,7 @@ + #if DISTRIBUTION lenny + kde-core + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + kde-plasma-desktop + #endif + kdm +--- a/lists/kde-full ++++ b/lists/kde-full +@@ -5,6 +5,6 @@ + #if DISTRIBUTION lenny + koffice + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + kde-full + #endif +--- a/lists/lxde ++++ b/lists/lxde +@@ -7,7 +7,7 @@ + #if DISTRIBUTION lenny + lxnm + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + network-manager-gnome + #endif + desktop-base +--- a/lists/rescue ++++ b/lists/rescue +@@ -6,12 +6,12 @@ + #include + + # Other forensic packages +-#if DISTRIBUTION lenny squeeze wheezy sid ++#if DISTRIBUTION lenny squeeze wheezy sid parkes + scalpel + #endif + + # Bootloaders +-#if DISTRIBUTION lenny squeeze wheezy sid ++#if DISTRIBUTION lenny squeeze wheezy sid parkes + syslinux-common + #endif + #if ARCHITECTURE amd64 i386 +@@ -37,7 +37,7 @@ + # Harddisk + dvd+rw-tools genisoimage sdparm hdparm blktool parted partimage secure-delete scsitools smartmontools testdisk wodim wipe hddtemp bonnie++ + par2 dvd+rw-tools +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + fsarchiver + #endif + +@@ -336,7 +336,7 @@ + #if DISTRIBUTION lenny + emacs22-nox + #endif +-#if DISTRIBUTON squeeze wheezy sid ++#if DISTRIBUTON squeeze wheezy sid parkes + emacs23-nox + #endif + build-essential gdb gfortran gnat +--- a/lists/standard-x11 ++++ b/lists/standard-x11 +@@ -9,6 +9,6 @@ + xresprobe + #endif + +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + keyboard-configuration + #endif +--- a/lists/xfce ++++ b/lists/xfce +@@ -6,7 +6,7 @@ + #if DISTRIBUTION lenny + gdm + #endif +-#if DISTRIBUTION squeeze wheezy sid ++#if DISTRIBUTION squeeze wheezy sid parkes + gdm3 + #endif + desktop-base +--- a/manpages/en/lb_config.1 ++++ b/manpages/en/lb_config.1 +@@ -153,7 +153,7 @@ + .br + [\fB\-\-mirror\-debian\-installer\fR \fIURL\fR] + .br +- [\fB\-\-mode\fR debian|emdebian|ubuntu] ++ [\fB\-\-mode\fR debian|emdebian|ubuntu|gnewsense] + .br + [\fB\-\-net\-root\-filesystem\fR nfs|cfs] + .br +@@ -340,7 +340,7 @@ + .IP "\fB\-\-isohybrid\-options\fR \fIOPTION\fR|""\fIOPTIONS\fR""" 4 + defines options to pass to isohybrid. + .IP "\fB\-\-iso\-application\fR \fINAME\fR" 4 +-sets the APPLICATION field in the header of a resulting CD/DVD image and defaults to "Debian Live" in debian mode, and to "Emdebian Live" in emdebian mode, and "Ubuntu Live" in ubuntu mode. ++sets the APPLICATION field in the header of a resulting CD/DVD image and defaults to "Debian Live" in debian mode, and to "Emdebian Live" in emdebian mode, "Ubuntu Live" in ubuntu mode and "gNewSense Live" in gnewsense mode. + .IP "\fB\-\-iso\-preparer\fR \fINAME\fR" 4 + sets the PREPARER field in the header of a resulting CD/DVD image. By default this is set to "live\-build \fIVERSION\fR; http://packages.qa.debian.org/live\-build", whereas VERSION is expanded to the version of live\-build that was used to build the image. + .IP "\fB\-\-iso\-publisher\fR \fINAME\fR" 4 +@@ -381,14 +381,14 @@ + sets the location of the Debian backports package mirror that should end up configured in the final image. By default, 'http://backports.debian.org/debian-backports/' is used. + .IP "\fB\-\-mirror\-debian\-installer\fR \fIURL\fR" 4 + sets the location of the mirror that will be used to fetch the Debian installer images. By default, this points to the same mirror used to build the live system, i.e. the value of \-\-mirror\-bootstrap. +-.IP "\fB\-\-mode\fR debian|emdebian|ubuntu" 4 ++.IP "\fB\-\-mode\fR debian|emdebian|ubuntu|gnewsense" 4 + defines a global mode to load project specific defaults. By default this is set to debian. + .IP "\fB\-\-net\-root\-filesystem\fR nfs|cfs" 4 + defines the filesystem that will be configured in the bootloader configuration for your netboot image. This defaults to nfs. + .IP "\fB\-\-net\-root\-mountoptions\fR \fIOPTIONS\fR" 4 + sets additional options for mounting the root filesystem in netboot images and is by default empty. + .IP "\fB\-\-net\-root\-path\fR \fIPATH\fR" 4 +-sets the file path that will be configured in the bootloader configuration for your netboot image. This defaults to /srv/debian\-live in debian mode and to /srv/emebian-live when being in emdebian mode, and /srv/ubuntu-live when in ubuntu mode. ++sets the file path that will be configured in the bootloader configuration for your netboot image. This defaults to /srv/debian\-live in debian mode and to /srv/emebian-live when being in emdebian mode, /srv/ubuntu-live when in ubuntu mode and /srv/gnewsense-live when in gnewsense mode. + .IP "\fB\-\-net\-root\-server\fR \fIIP\fR|\fIHOSTNAME\fR" 4 + sets the IP or hostname that will be configured in the bootloader configuration for the root filesystem of your netboot image. This defaults to 192.168.1.1. + .IP "\fB\-\-net\-cow\-filesystem\fR nfs|cfs" 4 +--- a/scripts/build/lb_binary_debian-installer ++++ b/scripts/build/lb_binary_debian-installer +@@ -382,7 +382,7 @@ + DI_PACKAGES="${DI_PACKAGES} busybox cryptsetup lvm2" + + case "${LB_MODE}" in +- debian) ++ debian|gnewsense) + case "${LB_DISTRIBUTION}" in + lenny) + DI_REQ_PACKAGES="${DI_REQ_PACKAGES} console-setup kbd" +--- a/scripts/build/lb_binary_disk ++++ b/scripts/build/lb_binary_disk +@@ -71,6 +71,18 @@ + TRACE="" + ;; + ++ gnewsense) ++ TITLE="gNewSense" ++ STRING="Build ${ARCHITECTURE}" ++ TRACE="" ++ ;; ++ ++ gnewsense-release) ++ TITLE="gNewSense" ++ STRING="Official ${ARCHITECTURE}" ++ TRACE="" ++ ;; ++ + *) + STRING="Snapshot ${ARCHITECTURE}" + TRACE="" +--- a/scripts/build/lb_chroot_hacks ++++ b/scripts/build/lb_chroot_hacks +@@ -39,7 +39,7 @@ + Create_lockfile .lock + + case "${LB_DISTRIBUTION}" in +- squeeze|sid) ++ squeeze|sid|parkes) + if echo "${LB_TASKS}" | grep -qs lxde || + echo "${LB_TASKS}" | grep -qs xfce + then +--- a/scripts/build/lb_chroot_sources ++++ b/scripts/build/lb_chroot_sources +@@ -61,7 +61,7 @@ + if [ "${LB_SECURITY}" = "true" ] + then + case "${LB_MODE}" in +- ubuntu) ++ ubuntu|gnewsense|gnewsense-release) + echo "deb ${LB_MIRROR_CHROOT_SECURITY} ${LB_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LB_SOURCE}" = "true" ] +@@ -109,7 +109,7 @@ + esac + ;; + +- ubuntu) ++ ubuntu|gnewsense|gnewsense-release) + echo "deb ${LB_MIRROR_CHROOT_VOLATILE} ${LB_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LB_SOURCE}" = "true" ] +@@ -515,7 +515,7 @@ + if [ "${LB_SECURITY}" = "true" ] + then + case "${LB_MODE}" in +- ubuntu) ++ ubuntu|gnewsense|gnewsense-release) + echo "deb ${LB_MIRROR_BINARY_SECURITY} ${LB_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LB_SOURCE}" = "true" ] +@@ -563,7 +563,7 @@ + esac + ;; + +- ubuntu) ++ ubuntu|gnewsense|gnewsense-release) + echo "deb ${LB_MIRROR_BINARY_VOLATILE} ${LB_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LB_SOURCE}" = "true" ] +--- a/scripts/build/lb_config ++++ b/scripts/build/lb_config +@@ -101,7 +101,7 @@ + \t [--mirror-binary-volatile URL]\n\ + \t [--mirror-binary-backports URL]\n\ + \t [--mirror-debian-installer URL]\n\ +-\t [--mode debian|emdebian|ubuntu]\n\ ++\t [--mode debian|emdebian|ubuntu|gnewsense]\n\ + \t [--net-root-filesystem nfs|cfs]\n\ + \t [--net-root-mountoptions OPTIONS]\n\ + \t [--net-root-path PATH]\n\ +--- a/scripts/build/lb_source_disk ++++ b/scripts/build/lb_source_disk +@@ -71,6 +71,18 @@ + TRACE="" + ;; + ++ gnewsense) ++ TITLE="gNewSense" ++ STRING="Build ${ARCHITECTURE}" ++ TRACE="" ++ ;; ++ ++ gnewsense-release) ++ TITLE="gNewSense" ++ STRING="Official ${ARCHITECTURE}" ++ TRACE="" ++ ;; ++ + *) + STRING="Snapshot ${ARCHITECTURE}" + TRACE="" diff -Nru live-build-2.0.12/debian/rules live-build-2.0.12/debian/rules --- live-build-2.0.12/debian/rules 2019-03-09 10:02:00.000000000 +0000 +++ live-build-2.0.12/debian/rules 2013-04-06 20:31:31.000000000 +0000 @@ -12,6 +12,13 @@ rm -f debian/live-build/usr/share/doc/live-build/COPYING rm -f debian/live-build/usr/share/doc/live-build/ChangeLog + # Useless on gNewSense without unsupported drivers or nonfree software. + rm -f debian/live-build/usr/share/live/build/examples/hooks/all_chroot_rt2570-modules.sh + rm -f debian/live-build/usr/share/live/build/examples/hooks/all_chroot_sun-java6.sh + rm -f debian/live-build/usr/share/live/build/examples/hooks/lenny_chroot_madwifi-modules.sh + rm -f debian/live-build/usr/share/live/build/examples/hooks/lenny_chroot_nvidia-legacy-modules.sh + rm -f debian/live-build/usr/share/live/build/examples/hooks/lenny_chroot_sun-java5.sh + # live-buld-cgi mkdir -p debian/live-build-cgi/usr/share/live/build mv debian/live-build/usr/share/live/build/cgi debian/live-build-cgi/usr/share/live/build diff -Nru live-build-2.0.12/debian/source/format live-build-2.0.12/debian/source/format --- live-build-2.0.12/debian/source/format 2019-03-09 10:02:00.000000000 +0000 +++ live-build-2.0.12/debian/source/format 2013-04-06 20:31:31.000000000 +0000 @@ -1 +1 @@ -1.0 +3.0 (quilt)