# Setting system type
LB_SYSTEM="${LB_SYSTEM:-live}"
- # Setting mode (currently: debian, emdebian, progress, ubuntu and kubuntu)
+ # Setting mode (currently: debian, emdebian, progress-linux, ubuntu and kubuntu)
if [ -x /usr/bin/lsb_release ]
then
_DISTRIBUTOR="$(lsb_release -is | tr [A-Z] [a-z])"
case "${_DISTRIBUTOR}" in
- debian|progress|ubuntu)
+ debian|progress-linux|ubuntu)
LB_MODE="${LB_MODE:-${_DISTRIBUTOR}}"
;;
;;
esac
else
- if [ -e /etc/progress_version ]
+ if [ -e /etc/progress-linux_version ]
then
- LB_MODE="${LB_MODE:-progress}"
+ LB_MODE="${LB_MODE:-progress-linux}"
elif [ -e /etc/ubuntu_version ]
then
LB_MODE="${LB_MODE:-ubuntu}"
# Setting distribution name
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_DISTRIBUTION="${LB_DISTRIBUTION:-baureo}"
LB_DERIVATIVE="true"
;;
esac
case "${LB_MODE}" in
- progress)
+ progress-linux)
case "${LB_DISTRIBUTION}" in
artax|artax-backports)
LB_PARENT_DISTRIBUTION="${LB_PARENT_DISTRIBUTION:-squeeze}"
# Setting apt recommends
case "${LB_MODE}" in
- emdebian|progress)
+ emdebian|progress-linux)
LB_APT_RECOMMENDS="${LB_APT_RECOMMENDS:-false}"
;;
# Setting apt source
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_APT_SOURCE_ARCHIVES="${LB_APT_SOURCE_ARCHIVES:-false}"
;;
# Setting root directory
case "${LB_MODE}" in
- debian)
- LB_ROOT="${LB_ROOT:-debian-live}"
- ;;
-
- progress)
+ progress-linux)
LB_ROOT="${LB_ROOT:-progress-linux}"
;;
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-${LB_MIRROR_BOOTSTRAP}}"
;;
- progress)
+ progress-linux)
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ftp.debian.org/debian/}"
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://cdn.archive.progress-linux.org/progress/}"
;;
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT_SECURITY}}"
;;
- progress)
+ progress-linux)
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://security.debian.org/}"
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT}}"
;;
# Setting updates mirror to fetch packages from
case "${LB_MODE}" in
- debian|progress)
+ debian|progress-linux)
LB_PARENT_MIRROR_CHROOT_UPDATES="${LB_PARENT_MIRROR_CHROOT_UPDATES:-${LB_PARENT_MIRROR_CHROOT}}"
LB_MIRROR_CHROOT_UPDATES="${LB_MIRROR_CHROOT_UPDATES:-${LB_MIRROR_CHROOT}}"
;;
LB_PARENT_MIRROR_CHROOT_BACKPORTS="${LB_PARENT_MIRROR_CHROOT_BACKPORTS:-${LB_MIRROR_CHROOT_BACKPORTS}}"
;;
- progress)
+ progress-linux)
LB_MIRROR_CHROOT_BACKPORTS="${LB_MIRROR_CHROOT_BACKPORTS:-${LB_MIRROR_CHROOT}}"
;;
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-${LB_MIRROR_BINARY}}"
;;
- progress)
+ progress-linux)
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://ftp.debian.org/debian/}"
LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_MIRROR_CHROOT}}"
;;
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-${LB_MIRROR_BINARY_SECURITY}}"
;;
- progress)
+ progress-linux)
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://security.debian.org/}"
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_MIRROR_CHROOT}}"
;;
LB_PARENT_MIRROR_BINARY_UPDATES="${LB_PARENT_MIRROR_BINARY_UPDATES:-${LB_PARENT_MIRROR_BINARY}}"
;;
- progress)
+ progress-linux)
LB_PARENT_MIRROR_BINARY_UPDATES="${LB_PARENT_MIRROR_BINARY_UPDATES:-${LB_PARENT_MIRROR_BINARY}}"
LB_MIRROR_BINARY_UPDATES="${LB_MIRROR_BINARY_UPDATES:-${LB_MIRROR_BINARY}}"
;;
LB_PARENT_MIRROR_BINARY_BACKPORTS="${LB_PARENT_MIRROR_BINARY_BACKPORTS:-${LB_MIRROR_BINARY_BACKPORTS}}"
;;
- progress)
+ progress-linux)
LB_MIRROR_BINARY_BACKPORTS="${LB_MIRROR_BINARY_BACKPORTS:-${LB_MIRROR_BINARY}}"
;;
esac
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_CHROOT}}"
LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_CHROOT}}"
;;
# Setting archive areas value
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-main contrib non-free}"
LB_PARENT_ARCHIVE_AREAS="${LB_PARENT_ARCHIVE_AREAS:-${LB_ARCHIVE_AREAS}}"
;;
i386)
case "${LB_MODE}" in
- progress)
+ progress-linux)
case "${LB_DISTRIBUTION}" in
artax)
LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-686}"
ia64)
case "${LB_MODE}" in
- progress)
+ progress-linux)
Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode."
exit 1
;;
powerpc)
case "${LB_MODE}" in
- progress)
+ progress-linux)
Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode."
exit 1
;;
s390)
case "${LB_MODE}" in
- progress|ubuntu|kubuntu)
+ progress-linux|ubuntu|kubuntu)
Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode."
exit 1
;;
sparc)
case "${LB_MODE}" in
- progress)
+ progress-linux)
Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode."
exit 1
;;
# Setting apt indices
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_APT_INDICES="${LB_APT_INDICES:-none}"
;;
# Setting debian-installer option
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_DEBIAN_INSTALLER="${LB_DEBIAN_INSTALLER:-live}"
;;
# Setting debian-installer-gui
case "${LB_MODE}" in
- debian|progress)
+ debian|progress-linux)
LB_DEBIAN_INSTALLER_GUI="${LB_DEBIAN_INSTALLER_GUI:-true}"
;;
LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Emdebian Live}"
;;
- progress)
+ progress-linux)
LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Progress Linux}"
;;
# Set iso publisher
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_ISO_PUBLISHER="${LB_ISO_PUBLISHER:-Progress Linux; http://www.progress-linux.org/; progress-project@lists.progress-linux.org}"
;;
LB_HDD_LABEL="${LB_HDD_LABEL:-EMDEBIAN_LIVE}"
;;
- progress)
+ progress-linux)
LB_HDD_LABEL="${LB_HDD_LABEL:-PROGRESS_$(echo ${LB_DISTRIBUTION} | tr [a-z] [A-Z])}"
;;
LB_ISO_VOLUME="${LB_ISO_VOLUME:-Emdebian ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}"
;;
- progress)
+ progress-linux)
LB_ISO_VOLUME="${LB_ISO_VOLUME:-Progress ${LB_DISTRIBUTION}}"
;;
# Setting loadlin option
case "${LB_MODE}" in
- progress|ubuntu|kubuntu)
+ progress-linux|ubuntu|kubuntu)
;;
# Setting win32-loader option
case "${LB_MODE}" in
- progress|ubuntu|kubuntu)
+ progress-linux|ubuntu|kubuntu)
;;
# Setting netboot server path
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_NET_ROOT_PATH="${LB_NET_ROOT_PATH:-/srv/progress-linux}"
;;
# Setting syslinux theme package
case "${LB_MODE}" in
- progress)
+ progress-linux)
LB_SYSLINUX_THEME="${LB_SYSLINUX_THEME:-progress-standard}"
;;
RELEASE_jessie="8"
RELEASE_sid="unstable"
-# Progress releases
+# Progress Linux releases
RELEASE_artax="1.0"
RELEASE_baureo="2.0"
RELEASE_charon="unstable"
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb\fP \- wrapper for live\-build programs
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb binary\fP \- Complete the binary stage
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap\fP \- Complete the bootstrap stage
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb chroot\fP \- Complete the chroot stage
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb clean\fP \- Clean build directory
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb config\fP \- Create config directory
.br
[\fB\-\-mirror\-debian\-installer\fP \fIURL\fP]
.br
- [\fB\-\-mode\fP debian|emdebian|progress|ubuntu|kubuntu]
+ [\fB\-\-mode\fP debian|emdebian|progress\-linux|ubuntu|kubuntu]
.br
[\fB\-\-system\fP live|normal]
.br
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb source\fP \- Complete the source stage
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlb testroot\fP \- Ensure that a system is built as root
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-BUILD 7 2012\-10\-22 3.0~a66\-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2012\-10\-25 3.0~a66\-1 "Debian Live Project"
.SH NAME
\fBlive\-build\fP \- the Debian Live tool suite
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb\fR \- wrapper for live\-build programs
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb binary\fR \- Complete the binary stage
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap\fR \- Complete the bootstrap stage
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb chroot\fR \- Complete the chroot stage
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb clean\fR \- Clean build directory
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb config\fR \- Create config directory
.br
[\fB\-\-mirror\-debian\-installer\fR \fIURL\fR]
.br
- [\fB\-\-mode\fR debian|emdebian|progress|ubuntu|kubuntu]
+ [\fB\-\-mode\fR debian|emdebian|progress-linux|ubuntu|kubuntu]
.br
[\fB\-\-system\fR live|normal]
.br
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb source\fR \- Complete the source stage
-.TH LIVE\-BUILD 1 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlb testroot\fR \- Ensure that a system is built as root
-.TH LIVE\-BUILD 7 2012\-10\-22 3.0~a66-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2012\-10\-25 3.0~a66-1 "Debian Live Project"
.SH NAME
\fBlive\-build\fR \- the Debian Live tool suite
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
#. type: Plain text
#: en/lb_config.1:179
-msgid " [B<--mode> debian|emdebian|progress|ubuntu|kubuntu]"
+msgid " [B<--mode> debian|emdebian|progress-linux|ubuntu|kubuntu]"
msgstr ""
#. type: Plain text
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
#. type: Plain text
#: en/lb_config.1:179
-msgid " [B<--mode> debian|emdebian|progress|ubuntu|kubuntu]"
+msgid " [B<--mode> debian|emdebian|progress-linux|ubuntu|kubuntu]"
msgstr ""
#. type: Plain text
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-10-22 20:44+0300\n"
+"POT-Creation-Date: 2012-10-25 13:29+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2012-10-22"
+msgid "2012-10-25"
msgstr ""
#. type: TH
URL="${LB_PARENT_MIRROR_DEBIAN_INSTALLER}/dists/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/main/installer-${LB_ARCHITECTURES}/current/images/"
fi
- if [ "${LB_MODE}" = "progress" ]
+ if [ "${LB_MODE}" = "progress-linux" ]
then
# FIXME: normal derivatives probably don't rebuild d-i,
- # but progress does.
+ # but progress-linux does.
URL="${LB_MIRROR_DEBIAN_INSTALLER}/dists/${LB_DEBIAN_INSTALLER_DISTRIBUTION}/main/installer-${LB_ARCHITECTURES}/current/images/"
fi
;;
TRACE=""
;;
- progress)
+ progress-linux)
TITLE="Progress Linux"
STRING="${VERSION} (${DISTRIBUTION}) - ${ARCHITECTURE}"
TRACE="project/trace/archive-master.progress-linux.org"
syslinux)
GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -no-emul-boot -boot-load-size 4 -boot-info-table"
case "${LB_MODE}" in
- progress)
+ progress-linux)
GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -r -b boot/boot.bin -c boot/boot.cat"
GENISOIMAGE_EXCLUDE="boot/boot.bin"
;;
_BOOTLOADER="isolinux"
case "${LB_MODE}" in
- progress)
+ progress-linux)
_TARGET="binary/boot"
;;
_BOOTLOADER="syslinux"
case "${LB_MODE}" in
- progress)
+ progress-linux)
_TARGET="binary/boot"
;;
if [ -e "${_TARGET}/splash.svg.in" ]
then
case "${LB_MODE}" in
- progress)
+ progress-linux)
_PROJECT="Progress Linux"
if ls config/package-lists/client-gnome.list*
fi
case "${LB_MODE}" in
- progress)
+ progress-linux)
for _FILE in "${_TARGET}/isolinux.bin" "${_TARGET}/isolinux.cfg" "${_TARGET}/syslinux.cfg"
do
if [ -e "${_FILE}" ]
# Temporary hack for base-files wrt/ plymouth
case "${LB_DISTRIBUTION}" in
artax*)
- echo '0.0.0' > chroot/etc/progress_version
+ echo '0.0.0' > chroot/etc/progress-linux_version
;;
esac
fi
case "${LB_MODE}" in
- progress)
- if [ ! -e chroot/etc/apt/preferences.d/progress.pref ]
+ progress-linux)
+ if [ ! -e chroot/etc/apt/preferences.d/progress-linux.pref ]
then
_DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | sed -e 's|-backports||')"
for _DISTRIBUTION in ${_ENABLE_DISTRIBUTIONS}
do
-cat >> chroot/etc/apt/preferences.d/progress.pref << EOF
+cat >> chroot/etc/apt/preferences.d/progress-linux.pref << EOF
Package: *
Pin: release n=${_DISTRIBUTION}
for _DISTRIBUTION in ${_DISABLE_DISTRIBUTIONS}
do
-cat >> chroot/etc/apt/preferences.d/progress.pref << EOF
+cat >> chroot/etc/apt/preferences.d/progress-linux.pref << EOF
#Package: *
#Pin: release n=${_DISTRIBUTION}
case "${LB_DISTRIBUTION}" in
artax-backports)
-cat >> chroot/etc/apt/preferences.d/progress.tmp.pref << EOF
+cat >> chroot/etc/apt/preferences.d/progress-linux.tmp.pref << EOF
Package: squashfs-tools
Pin: release n=squeeze
Pin-Priority: 1001
fi
# Remove temporary hack to avoid squashfs version mismatch for artax-backports
- rm -f chroot/etc/apt/preferences.d/progress.tmp.pref
+ rm -f chroot/etc/apt/preferences.d/progress-linux.tmp.pref
# Removing stage file
rm -f .build/chroot_apt
if [ "${LB_SECURITY}" = "true" ]
then
case "${LB_MODE}" in
- debian|progress)
+ debian|progress-linux)
case "${LB_PARENT_DISTRIBUTION}" in
sid)
;;
esac
- if [ "${LB_MODE}" = progress ]
+ if [ "${LB_MODE}" = progress-linux ]
then
echo "deb ${LB_MIRROR_CHROOT_SECURITY} ${_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
if [ "${LB_SECURITY}" = "true" ]
then
case "${LB_MODE}" in
- debian|progress)
+ debian|progress-linux)
case "${LB_PARENT_DISTRIBUTION}" in
sid)
;;
esac
- if [ "${LB_MODE}" = progress ]
+ if [ "${LB_MODE}" = progress-linux ]
then
echo "deb ${LB_MIRROR_BINARY_SECURITY} ${_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
TRACE=""
;;
- progress)
+ progress-linux)
TITLE="Progress Linux"
STRING="${VERSION} (${DISTRIBUTION}) - ${ARCHITECTURE}"
TRACE="project/trace/archive-master.progress-linux.org"