[SCM] live-build branch, debian-next, updated. debian/3.0_a5-1-18-g5be6363
Daniel Baumann
daniel at debian.org
Tue Nov 2 10:21:54 UTC 2010
The following commit has been merged in the debian-next branch:
commit 5be636316eb24905bdd754ea0bf3d4712bb69f06
Author: Daniel Baumann <daniel at debian.org>
Date: Tue Nov 2 11:19:42 2010 +0100
First step in cleaning up syslinux handling by using syslinux-theme packages rather than embedded templates.
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 0a1da1f..72618f9 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -1060,32 +1060,8 @@ Set_defaults ()
# Setting net tarball
LB_NET_TARBALL="${LB_NET_TARBALL:-gzip}"
- # Setting syslinux configuration file
- # LB_SYSLINUX_CFG
-
- # Setting syslinux splash
- # LB_SYSLINUX_SPLASH
-
- LB_SYSLINUX_TIMEOUT="${LB_SYSLINUX_TIMEOUT:-0}"
-
- # Setting syslinux menu
- LB_SYSLINUX_MENU="${LB_SYSLINUX_MENU:-true}"
-
- # Setting syslinux menu live entries
- case "${LB_MODE}" in
- debian|debian-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)}"
- ;;
-
- *)
- LB_SYSLINUX_MENU_LIVE_ENTRY="${LB_SYSLINUX_MENU_LIVE_ENTRY:-Start ${LB_ISO_APPLICATION}}"
- LB_SYSLINUX_MENU_LIVE_ENTRY_FAILSAFE="${LB_SYSLINUX_MENU_LIVE_ENTRY_FAILSAFE:-${LB_SYSLINUX_MENU_LIVE_ENTRY} (failsafe)}"
- ;;
- esac
-
- # Settings memtest menu entry
- LB_SYSLINUX_MENU_MEMTEST_ENTRY="${LB_SYSLINUX_MENU_MEMTEST_ENTRY:-Memory test}"
+ # Setting syslinux theme package
+ LB_SYSLINUX_THEME="${LB_SYSLINUX_THEME:-debian-squeeze}"
# Setting username
case "${LB_MODE}" in
diff --git a/scripts/build/lb_binary_syslinux b/scripts/build/lb_binary_syslinux
index 9a96c5d..a2f248d 100755
--- a/scripts/build/lb_binary_syslinux
+++ b/scripts/build/lb_binary_syslinux
@@ -37,9 +37,6 @@ Require_stagefile .stage/config .stage/bootstrap
# Checking stage file
Check_stagefile .stage/binary_syslinux
-# Checking syslinux templates
-Check_templates syslinux
-
# Checking lock file
Check_lockfile .lock
@@ -50,613 +47,66 @@ Create_lockfile .lock
Check_architecture amd64 i386
Check_crossarchitecture
-# Checking depends
-Check_package chroot/usr/bin/syslinux syslinux
-
-# Restoring cache
-Restore_cache cache/packages_binary
-
-# Installing depends
-Install_package
-
-# Local functions
-Utf8_to_latin1 ()
-{
- VALUE="${1}"
-
- echo "${VALUE}" | iconv -f utf-8 -t latin1
-}
-
-Syslinux_memtest_entry ()
-{
- LABEL="${1}"
- MENULABEL="$(Utf8_to_latin1 "${2}")"
- KERNEL="${3}"
-
- MEMTEST="${MEMTEST}\nlabel ${LABEL}\n"
-
- # Write the menu label if the syslinux menu is being use
- MEMTEST="${MEMTEST}\tmenu label ${MENULABEL}\n"
- MEMTEST="${MEMTEST}\tkernel ${LIVE_KERNEL_PATH}/${KERNEL}\n"
- MEMTEST="$(/bin/echo ${MEMTEST} | sed -e 's|//|/|g')"
-}
+case "${LB_BUILD_WITH_CHROOT}" in
+ true)
+ # Checking depends
+ Check_package chroot/usr/bin/syslinux syslinux
+ Check_package chroot/usr/share/syslinux/themes/${LB_SYSLINUX_THEME} syslinux-themes-${LB_SYSLINUX_THEME}
-Syslinux_live_entry ()
-{
- LABEL="${1}"
- MENULABEL="$(Utf8_to_latin1 "${2}")"
- MENULABEL="${2}"
- KERNEL="${3}"
- INITRD="${4}"
- APPEND="${5}"
+ # Restoring cache
+ Restore_cache cache/packages_binary
- # Boot in quiet mode where appropriate
- QAPPEND="quiet"
+ # Installing depends
+ Install_package
- case "${LB_BINARY_IMAGES}" in
- iso*|usb*)
- NUMBER="$(ls -1 ${KERNEL_PATH} | grep 'vmlinuz-' | wc -l)"
-
- # Do not add numbering to filenames if first kernel/initrd
- if [ "${NUMBER}" = "2" ]
- then
- NUMBER=""
- fi
-
- # Note: ISOLINUX will not find the kernel if the name ends in ".img".
- if [ -e ${KERNEL_PATH}/${KERNEL} ]
- then
- mv ${KERNEL_PATH}/${KERNEL} ${KERNEL_PATH}/vmlinuz${NUMBER}
- fi
-
- if [ -e ${KERNEL_PATH}/${INITRD} ]
- then
- mv ${KERNEL_PATH}/${INITRD} ${KERNEL_PATH}/initrd${NUMBER}.img
- fi
-
- KERNEL=vmlinuz${NUMBER}
- INITRD=initrd${NUMBER}.img
- ;;
- esac
-
- # Regular kernel
- LINUX_LIVE="${LINUX_LIVE}\nlabel ${LABEL}\n"
-
- # Write the menu label if the syslinux menu is being use
- if [ -n "${MENULABEL}" ]
- then
- LINUX_LIVE="${LINUX_LIVE}\tmenu label ${MENULABEL}\n"
- fi
-
- LINUX_LIVE="${LINUX_LIVE}\tkernel ${LIVE_KERNEL_PATH}/${KERNEL}\n"
- LINUX_LIVE="${LINUX_LIVE}\tappend initrd=${LIVE_KERNEL_PATH}/${INITRD} boot=${INITFS} config ${LB_BOOTAPPEND_LIVE} ${APPEND} ${QAPPEND}\n"
-
- # Failsafe kernel
- LINUX_LIVE="${LINUX_LIVE}\nlabel ${LABEL}failsafe\n"
-
- # Write the menu label if the syslinux menu is being use
- if [ -n "${MENULABEL}" ]
- then
- LINUX_LIVE="${LINUX_LIVE}\tmenu label ${MENULABEL} (failsafe)\n"
- fi
-
- LINUX_LIVE="${LINUX_LIVE}\tkernel ${LIVE_KERNEL_PATH}/${KERNEL}\n"
- LINUX_LIVE="${LINUX_LIVE}\tappend initrd=${LIVE_KERNEL_PATH}/${INITRD} boot=${INITFS} config ${LB_BOOTAPPEND_LIVE} ${APPEND} ${FAILSAFE}\n"
-}
-
-Syslinux_install_entry ()
-{
- LABEL="${1}"
- KERNEL="${2}"
- INITRD="${3}"
- APPEND="${4}"
-
- # Boot in quiet mode where appropriate
- QAPPEND="quiet"
-
- for TYPE in Install Expert Rescue Auto
- do
- case "${TYPE}" in
- Install)
- TAPPEND="${APPEND} ${QAPPEND}"
- ;;
-
- Expert)
- TAPPEND="priority=low ${APPEND}"
- ;;
-
- Rescue)
- TAPPEND="rescue/enable=true ${APPEND} ${QAPPEND}"
- ;;
-
- Auto)
- TAPPEND="auto=true priority=critical ${APPEND} ${QAPPEND}"
- ;;
- esac
-
- case "${LABEL}" in
- Text)
- TYPE_SUFFIX=""
- ;;
- GUI)
- TYPE_SUFFIX="gui"
- ;;
- esac
-
- LINUX_INSTALL="${LINUX_INSTALL}\nlabel $(echo "${TYPE}" | tr A-Z a-z)${TYPE_SUFFIX}\n"
- LINUX_INSTALL="${LINUX_INSTALL}\tmenu label ${LABEL} ${TYPE}\n"
- LINUX_INSTALL="${LINUX_INSTALL}\tkernel ${LIVE_INSTALL_KERNEL_PATH}/${KERNEL}\n"
- LINUX_INSTALL="${LINUX_INSTALL}\tappend initrd=${LIVE_INSTALL_KERNEL_PATH}/${INITRD} ${TAPPEND} ${LB_BOOTAPPEND_INSTALL}\n"
- done
-}
-
-Copy_syslinux_templates ()
-{
- cp -r "${TEMPLATES}"/common/* ${SCREEN_PATH}
-
- if [ "${LB_SYSLINUX_MENU}" = "false" ]
- then
- cp -r "${TEMPLATES}"/normal/* ${SCREEN_PATH}
- else
- cp -r "${TEMPLATES}"/menu/* ${SCREEN_PATH}
-
- case "${LB_SYSLINUX_MENU}" in
- gfxboot)
- MENUMODULE="gfxboot.c32"
- ;;
-
- menu)
- MENUMODULE="menu.c32"
- ;;
-
- vesamenu)
- MENUMODULE="vesamenu.c32"
- ;;
-
- *)
- if [ -z "${LB_SYSLINUX_CFG}" ]
- then
- MENUMODULE=$(grep 'menu.c32' ${TEMPLATES}/menu/syslinux.cfg | sed 's|default\s*.*/\(.*menu.c32\)$|\1|g')
- else
- LB_SYSLINUX_CFG="${LB_SYSLINUX_CFG:-${TEMPLATES}/menu/syslinux.cfg}"
- fi
- ;;
- esac
-
- case "${LB_BUILD_WITH_CHROOT}" in
- true)
- cp chroot/usr/lib/syslinux/"${MENUMODULE}" ${DATA_PATH}
- ;;
- false)
- cp /usr/lib/syslinux/"${MENUMODULE}" ${DATA_PATH}
- ;;
- esac
- fi
-
- if ls "${TEMPLATES}/${LB_LANGUAGE}"/* > /dev/null 2>&1
- then
- cp -r "${TEMPLATES}"/"${LB_LANGUAGE}"/* ${SCREEN_PATH}
- else
- if ls "${TEMPLATES}"/en/* > /dev/null 2>&1
- then
- cp -r "${TEMPLATES}"/en/* ${SCREEN_PATH}
- fi
- fi
-
- if ls ${SCREEN_PATH}/*.live > /dev/null 2>&1
- then
- for FILE in ${SCREEN_PATH}/*.live
- do
- mv ${FILE} $(dirname ${FILE})/$(basename ${FILE} .live)
- done
- fi
-
- if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
- then
- if ls ${SCREEN_PATH}/*.install > /dev/null 2>&1
- then
- for FILE in ${SCREEN_PATH}/*.install
- do
- mv ${FILE} $(dirname ${FILE})/$(basename ${FILE} .install)
- done
- fi
-
- case "${LB_ARCHITECTURE}" in
- amd64|i386|powerpc)
- if ls ${SCREEN_PATH}/*.install.g-i > /dev/null 2>&1
- then
- for FILE in ${SCREEN_PATH}/*.install.g-i
- do
- mv ${FILE} $(dirname ${FILE})/$(basename ${FILE} .install.g-i)
- done
- fi
- ;;
-
- *)
- rm -f ${SCREEN_PATH}/*.install.g-i
- ;;
- esac
- else
- rm -f ${SCREEN_PATH}/*.install*
- fi
-
- if [ "${LB_SYSLINUX_MENU}" != "false" ]
- then
- rm -f ${DATA_PATH}/boot.txt
- fi
-
- # Copying custom splash screen
- if [ "${LB_SYSLINUX_SPLASH}" = "none" ]
- then
- # no splash screen
- SPLASH=""
- rm -f ${SCREEN_PATH}/splash.rle
- rm -f ${DATA_PATH}/splash.png
- else
- if [ "${LB_SYSLINUX_MENU}" = "false" ]
- then
- SPLASH="${LIVE_DATA_PATH}/splash.rle"
- else
- SPLASH="${LIVE_DATA_PATH}/splash.png"
- fi
-
- if [ -n "${LB_SYSLINUX_SPLASH}" ]
- then
- if [ ! -e "${LB_SYSLINUX_SPLASH}" ]
- then
- Echo_error "%s doen't exist" "${LB_SYSLINUX_SPLASH}"
- exit 1
- else
- rm -f ${SCREEN_PATH}/splash.rle
- rm -f ${DATA_PATH}/splash.png
- cp -f "${LB_SYSLINUX_SPLASH}" ${DATA_PATH}/$(basename ${SPLASH})
- fi
- fi
- fi
-}
-
-Configure_syslinux_templates ()
-{
- templates="$(find ${SYSLINUX_PATH} -type f -name '*.cfg' -o -name '*.txt')"
-
- for template_file in ${templates}
- do
- sed -i -e "s|{\$LINUX_LIVE}|${LINUX_LIVE}|" \
- -e "s|{\$LINUX_INSTALL}|${LINUX_INSTALL}|" \
- -e "s|{\$MEMTEST}|${MEMTEST}|" \
- -e "s|{\$LIVE_SCREEN_PATH}|${LIVE_SCREEN_PATH}|" \
- -e "s|{\$LIVE_DATA_PATH}|${LIVE_DATA_PATH}|" \
- -e "s|{\$LIVE_KERNEL_PATH}|${LIVE_KERNEL_PATH}|" \
- -e "s|{\$SPLASH}|${SPLASH}|" \
- -e "s|{\$LB_DISTRIBUTION}|${LB_DISTRIBUTION}|" \
- -e "s|{\$LB_DATE}|$(date +%Y%m%d)|" \
- -e "s|{\$LB_MEDIA}|${MEDIA}|" \
- -e "s|{\$LB_VERSION}|${VERSION}|" \
- -e "s|{\$LB_SYSLINUX_TIMEOUT}|${LB_SYSLINUX_TIMEOUT}0|" \
- $template_file
- done
-
- case "${LB_BINARY_IMAGES}" in
- usb*)
- if [ -f "${SYSLINUX_PATH}/exithelp.cfg" ]
- then
- sed -i -e "s|config isolinux.cfg|config syslinux.cfg|" "${SYSLINUX_PATH}"/exithelp.cfg
- fi
- ;;
-
- net)
- if [ -f "${SCREEN_PATH}/exithelp.cfg" ]
- then
- sed -i -e "s|config isolinux.cfg|config ${LIVE_KERNEL_PATH}/pxelinux.cfg/default|" "${SCREEN_PATH}"/exithelp.cfg
- fi
- ;;
- esac
-}
-
-# Setting up common variables
-case "${LB_INITRAMFS}" in
- casper)
- INITFS="casper"
- ;;
-
- live-initramfs|live-boot)
- INITFS="live"
+ _PREFIX="chroot"
;;
esac
-# Setting boot method specific variables
+# Assembling image specifics
case "${LB_BINARY_IMAGES}" in
iso*)
- SYSLINUX_PATH="binary/isolinux"
- KERNEL_PATH="binary/${INITFS}"
- SCREEN_PATH="${SYSLINUX_PATH}"
- DATA_PATH="${SCREEN_PATH}"
- LIVE_KERNEL_PATH="/${INITFS}"
- LIVE_INSTALL_KERNEL_PATH="/install"
- LIVE_SCREEN_PATH="/isolinux"
- LIVE_DATA_PATH="${LIVE_SCREEN_PATH}"
- MEDIA="CD-ROM"
+ _BOOTLOADER="isolinux"
+ _SUFFIX="binary/isolinux"
;;
- net)
- SYSLINUX_PATH="tftpboot"
- KERNEL_PATH="${SYSLINUX_PATH}/debian-live/${LB_ARCHITECTURE}"
- SCREEN_PATH="${SYSLINUX_PATH}/debian-live/${LB_ARCHITECTURE}/boot-screens"
- DATA_PATH="${SCREEN_PATH}"
- LIVE_KERNEL_PATH="debian-live/${LB_ARCHITECTURE}"
- LIVE_INSTALL_KERNEL_PATH="debian-install/${LB_ARCHITECTURE}"
- LIVE_SCREEN_PATH="debian-live/${LB_ARCHITECTURE}/boot-screens"
- LIVE_DATA_PATH="${LIVE_SCREEN_PATH}"
- MEDIA="netboot"
+ net*)
+ _BOOTLOADER="pxelinux"
+ _SUFFIX="tftpboot"
;;
- usb*|tar)
- SYSLINUX_PATH="binary/syslinux"
- KERNEL_PATH="binary/${INITFS}"
- SCREEN_PATH="${SYSLINUX_PATH}"
- DATA_PATH="${SCREEN_PATH}"
- LIVE_KERNEL_PATH="/${INITFS}"
- LIVE_INSTALL_KERNEL_PATH="/install"
- LIVE_SCREEN_PATH="/syslinux"
- LIVE_DATA_PATH="${LIVE_SCREEN_PATH}"
- MEDIA="hd-media"
+ usb*)
+ _BOOTLOADER="syslinux"
+ _SUFFIX="binary/syslinux"
;;
esac
-Check_multiarchitecture
-
-# Creating directories
-mkdir -p "${KERNEL_PATH}"
-mkdir -p "${SCREEN_PATH}"
-mkdir -p "${DATA_PATH}"
+# Copying files
+mkdir -p ${_SUFFIX}
+cp -aL ${_PREFIX}/usr/share/syslinux/themes/${LB_SYSLINUX_THEME}/${_BOOTLOADER}/* ${_SUFFIX}
-# Setting boot parameters
-case "${LB_ENCRYPTION}" in
- ""|false)
- ;;
- *)
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} encryption=${LB_ENCRYPTION}"
- ;;
-esac
-
-if [ -n "${LB_USERNAME}" ]
+# Configuring files
+if [ -e ${_SUFFIX}/live.cfg ]
then
- case "${LB_INITRAMFS}" in
- casper)
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} username=${LB_USERNAME}"
- ;;
-
- live-initramfs|live-boot)
- if [ "${LB_USERNAME}" != "user" ]
- then
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} username=${LB_USERNAME}"
- fi
- ;;
- esac
+ sed -i -e "s|@LB_BOOTAPPEND_LIVE@|${LB_BOOTAPPEND_LIVE}|g" \
+ ${_SUFFIX}/live.cfg
fi
-if [ -n "${LB_HOSTNAME}" ]
+if [ -e ${_SUFFIX}/install.cfg ]
then
- case "${LB_INITRAMFS}" in
- casper)
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} hostname=${LB_HOSTNAME}"
- ;;
-
- live-initramfs|live-boot)
- if [ "${LB_HOSTNAME}" != "debian" ]
- then
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} hostname=${LB_HOSTNAME}"
- fi
- ;;
- esac
+ sed -i -e "s|@LB_BOOTAPPEND_INSTALL@|${LB_BOOTAPPEND_INSTALL}|g" \
+ ${_SUFFIX}/install.cfg
fi
-if [ "${LB_UNION_FILESYSTEM}" != "aufs" ]
-then
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} union=${LB_UNION_FILESYSTEM}"
-fi
-
-if [ "${LB_EXPOSED_ROOT}" != "false" ]
-then
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} exposedroot"
-fi
-
-if [ "${LB_BINARY_IMAGES}" = "net" ]
-then
- case "${LB_NET_ROOT_FILESYSTEM}" in
- nfs)
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} netboot=nfs nfsroot=${LB_NET_ROOT_SERVER}:${LB_NET_ROOT_PATH}"
- ;;
-
- cifs)
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} netboot=cifs nfsroot=//${LB_NET_ROOT_SERVER}${LB_NET_ROOT_PATH}"
- ;;
-
- *)
- Echo_error "Unsupported net filesystem"
- exit 1
- ;;
- esac
-
- if [ -n "${LB_NET_ROOT_MOUNTOPTIONS}" ]
- then
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} nfsopts=${LB_NET_ROOT_MOUNTOPTIONS}"
- fi
-fi
-
-if [ -n "${LB_NET_COW_PATH}" ]
-then
- case "${LB_NET_COW_FILESYSTEM}" in
- nfs)
- if [ -n "${LB_NET_COW_MOUNTOPTIONS}" ]
- then
- LB_NET_COW_MOUNTOPTIONS=",${LB_NET_COW_MOUNTOPTIONS}"
- fi
-
- LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} nfscow=${LB_NET_COW_SERVER}:${LB_NET_COW_PATH}${LB_NET_COW_MOUNTOPTIONS}"
- ;;
-
- *)
- Echo_error "Unsupported net filesystem"
- exit 1
- ;;
- esac
-fi
-
-LB_BOOTAPPEND_LIVE="$(echo ${LB_BOOTAPPEND_LIVE} | sed -e 's| ||')"
-
-# Parameters are listed at: linux/Documentation/kernel-parameters.txt
-FAILSAFE="noapic noapm nodma nomce nolapic nomodeset nosmp vga=normal"
-
-# Moving kernels into place
-if [ "binary/${INITFS}" != "${KERNEL_PATH}" ]
-then
- mv binary/${INITFS}/vmlinuz* ${KERNEL_PATH}
- mv binary/${INITFS}/initrd* ${KERNEL_PATH}
-
- if [ "${LB_MEMTEST}" != "false" ] && [ "${LB_MEMTEST}" != "none" ]
- then
- mv binary/${INITFS}/memtest ${KERNEL_PATH}
- fi
-fi
-
-# Default entries
-DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')"
-DEFAULT_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
-DEFAULT_INITRD="initrd.img-$(echo ${DEFAULT_KERNEL} | sed -e 's|vmlinuz-||')"
-
-Syslinux_live_entry "live" "${LB_SYSLINUX_MENU_LIVE_ENTRY}" "${DEFAULT_KERNEL}" "${DEFAULT_INITRD}"
-
-if [ "$(echo ${LB_LINUX_FLAVOURS} | wc -w)" -gt "1" ]
-then
- for FLAVOUR in ${LB_LINUX_FLAVOURS}
- do
- if [ "${FLAVOUR}" != "${DEFAULT_FLAVOUR}" ]
- then
- FLAVOUR_KERNEL="$(basename chroot/boot/vmlinuz-*${FLAVOUR})"
- FLAVOUR_INITRD="initrd.img-$(echo ${FLAVOUR_KERNEL} | sed -e 's|vmlinuz-||')"
- Syslinux_live_entry "live-${FLAVOUR}" "${LB_SYSLINUX_MENU_LIVE_ENTRY} ${FLAVOUR}" "${FLAVOUR_KERNEL}" "${FLAVOUR_INITRD}"
- fi
- done
-fi
-
-# Only needed for non-vesamenu, non-gfxboot syslinux
-case "${LB_SYSLINUX_MENU}" in
- false|menu)
- # Adding syslinux hardcoded default label entry
- Syslinux_live_entry "linux" "" "${DEFAULT_KERNEL}" "${DEFAULT_INITRD}"
- ;;
-esac
-
-# Assembling debian-installer configuration
-if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
-then
- VMLINUZ_DI="vmlinuz"
- INITRD_DI="initrd.gz"
- APPEND_DI="vga=normal"
-
- VMLINUZ_GI="gtk/vmlinuz"
- INITRD_GI="gtk/initrd.gz"
- APPEND_GI="video=vesa:ywrap,mtrr vga=788"
-
- if [ -f "binary/${LIVE_INSTALL_KERNEL_PATH}/${VMLINUZ_DI}" ] && [ -f "binary/${LIVE_INSTALL_KERNEL_PATH}/${INITRD_DI}" ]
- then
- Syslinux_install_entry "Text" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"
- fi
-
- if [ -f "binary/${LIVE_INSTALL_KERNEL_PATH}/${VMLINUZ_GI}" ] && [ -f "binary/${LIVE_INSTALL_KERNEL_PATH}/${INITRD_GI}" ]
- then
- Syslinux_install_entry "GUI" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}"
- fi
-fi
-
-# Assembling memtest configuration
-if [ -f "${KERNEL_PATH}"/memtest ]
-then
- Syslinux_memtest_entry "memtest" "${LB_SYSLINUX_MENU_MEMTEST_ENTRY}" "memtest"
-fi
-
-# Copy templates to base syslinux directory
-Copy_syslinux_templates
-
-# Fill in templates with created values
-Configure_syslinux_templates
-
-# Configure syslinux setup per boot method
-case "${LB_BINARY_IMAGES}" in
- iso*)
- case "${LB_BUILD_WITH_CHROOT}" in
- true)
- cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}
- ;;
- false)
- cp /usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}
- ;;
- esac
-
- mv ${SCREEN_PATH}/syslinux.cfg ${SCREEN_PATH}/isolinux.cfg
-
- # Copying configuration file
- if [ -n "${LB_SYSLINUX_CFG}" ]
- then
- cp "${LB_SYSLINUX_CFG}" ${SCREEN_PATH}/isolinux.cfg
- fi
- ;;
-
- net)
- case "${LB_BUILD_WITH_CHROOT}" in
- true)
- cp chroot/usr/lib/syslinux/pxelinux.0 ${KERNEL_PATH}
- ;;
- false)
- cp /usr/lib/syslinux/pxelinux.0 ${KERNEL_PATH}
- ;;
- esac
-
- mkdir -p ${KERNEL_PATH}/pxelinux.cfg
- ln -s ${LIVE_KERNEL_PATH}/pxelinux.cfg ${SYSLINUX_PATH}/pxelinux.cfg
- ln -s ${LIVE_KERNEL_PATH}/pxelinux.0 ${SYSLINUX_PATH}/pxelinux.0
-
- # Adjusting include pathes
- for FILE in ${SCREEN_PATH}/*.cfg
- do
- sed -i -e "s|^include |include ${LIVE_SCREEN_PATH}/|g" "${FILE}"
- done
+case "${LB_BUILD_WITH_CHROOT}" in
+ true)
+ # Saving cache
+ Save_cache cache/packages_binary
- sed -i -e "s| f| ${LIVE_SCREEN_PATH}/f|g" ${SCREEN_PATH}/prompt.cfg
-
- mv ${SCREEN_PATH}/syslinux.cfg ${KERNEL_PATH}/pxelinux.cfg/default
-
- # Copying configuration file
- if [ -n "${LB_SYSLINUX_CFG}" ]
- then
- cp "${LB_SYSLINUX_CFG}" ${KERNEL_PATH}/pxelinux.cfg/default
- fi
- ;;
-
- usb*|tar)
- case "${LB_BUILD_WITH_CHROOT}" in
- true)
- cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}/syslinux.bin
- ;;
- false)
- cp /usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}/syslinux.bin
- ;;
- esac
-
- # Copying configuration file
- if [ -n "${LB_SYSLINUX_CFG}" ]
- then
- cp "${LB_SYSLINUX_CFG}" ${SCREEN_PATH}/syslinux.cfg
- fi
+ # Removing depends
+ Remove_package
;;
esac
-# Saving cache
-Save_cache cache/packages_binary
-
-# Removing depends
-Remove_package
-
# Creating stage file
Create_stagefile .stage/binary_syslinux
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index 9a2f82b..6305f46 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -121,9 +121,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
\t [--security true|false]\n\
\t [--source true|false]\n\
\t [-s|--source-images iso|net|tar|usb-hdd]\n\
-\t [--syslinux-splash FILE]\n\
-\t [--syslinux-timeout SECONDS]\n\
-\t [--syslinux-menu true|false]\n\
+\t [--syslinux-theme THEME_SUFFIX]\n\
\t [--sysvinit true|false]\n\
\t [--tasksel aptitude|tasksel]\n\
\t [--tasks TASK]\n\
@@ -152,7 +150,7 @@ Local_arguments ()
encryption:,grub-splash:,hostname:,isohybrid-options:,iso-application:,iso-preparer:,iso-publisher:,
iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:,
net-root-path:,net-root-server:,net-cow-filesystem:,net-cow-mountoptions:,net-cow-path:,
- net-cow-server:,net-tarball:,syslinux-splash:,syslinux-timeout:,syslinux-menu:,
+ net-cow-server:,net-tarball:,syslinux-theme:,
username:,win32-loader:,source:,source-images:,breakpoints,conffile:,debug,force,
help,ignore-system-defaults,quiet,usage,verbose,version"
# Remove spaces added by indentation
@@ -682,18 +680,8 @@ Local_arguments ()
shift 2
;;
- --syslinux-splash)
- LB_SYSLINUX_SPLASH="${2}"
- shift 2
- ;;
-
- --syslinux-timeout)
- LB_SYSLINUX_TIMEOUT="${2}"
- shift 2
- ;;
-
- --syslinux-menu)
- LB_SYSLINUX_MENU="${2}"
+ --syslinux-theme)
+ LB_SYSLINUX_THEME="${2}"
shift 2
;;
@@ -1261,33 +1249,9 @@ LB_NET_COW_SERVER="${LB_NET_COW_SERVER}"
# (Default: ${LB_NET_TARBALL})
LB_NET_TARBALL="${LB_NET_TARBALL}"
-# \$LB_SYSLINUX_SPLASH: set custom syslinux splash
-# (Default: empty)
-LB_SYSLINUX_SPLASH="${LB_SYSLINUX_SPLASH}"
-
-# \$LB_SYSLINUX_TIMEOUT: set custom syslinux timeout in seconds
-# (Default: 0)
-LB_SYSLINUX_TIMEOUT="${LB_SYSLINUX_TIMEOUT}"
-
-# \$LB_SYSLINUX_CFG: set custom syslinux configuration file
-# (Default: empty)
-LB_SYSLINUX_CFG="${LB_SYSLINUX_CFG}"
-
-# \$LB_SYSLINUX_MENU: set syslinux menu
-# (Default: ${LB_SYSLINUX_MENU})
-LB_SYSLINUX_MENU="${LB_SYSLINUX_MENU}"
-
-# \$LB_SYSLINUX_MENU_LIVE_ENTRY: set text to be used on the menu for live entries
-# (Default: ${LB_SYSLINUX_MENU_LIVE_ENTRY})
-LB_SYSLINUX_MENU_LIVE_ENTRY="${LB_SYSLINUX_MENU_LIVE_ENTRY}"
-
-# \$LB_SYSLINUX_MENU_LIVE_FAILSAFE_ENTRY: set text to be used on the menu for live entries (failsafe ones)
-# (Default: ${LB_SYSLINUX_MENU_LIVE_FAILSAFE_ENTRY})
-LB_SYSLINUX_MENU_LIVE_FAILSAFE_ENTRY="${LB_SYSLINUX_MENU_LIVE_FAILSAFE_ENTRY}"
-
-# \$LB_SYSLINUX_MENU_MEMTEST_ENTRY: set text to be used on the menu for memtest entry
-# (Default: ${LB_SYSLINUX_MENU_MEMTEST_ENTRY})
-LB_SYSLINUX_MENU_MEMTEST_ENTRY="${LB_SYSLINUX_MENU_MEMTEST_ENTRY}"
+# \$LB_SYSLINUX_THEME: set syslinux theme package
+# (Default: ${LB_SYSLINUX_THEME})
+LB_SYSLINUX_THEME="${LB_SYSLINUX_THEME}"
# \$LB_USERNAME: set username
# (Default: ${LB_USERNAME})
diff --git a/templates/syslinux/ca/boot.txt b/templates/syslinux/ca/boot.txt
deleted file mode 100644
index d1f69d4..0000000
--- a/templates/syslinux/ca/boot.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-{$SPLASH}
-
-Premeu F1 i control, i llavors el 1 per obtenir ajuda, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f1.txt.install b/templates/syslinux/ca/f1.txt.install
deleted file mode 100644
index 383ce1c..0000000
--- a/templates/syslinux/ca/f1.txt.install
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fBenvingut a Debian GNU/Linux!07 09F107
-
-Aix• ‚s un Debian {$LB_DISTRIBUTION} combinat live i d'instalúlaci¢ dins un {$LB_MEDIA}.
-Fet el {$LB_DATE}.
-
-0fMEN£ DE LES AJUDES07
-
-0fTECLA TEMA07
-
-<09F107> Aquesta p…gina, l'¡ndex.
-<09F207> Prerequisits per instalúlar Debian.
-<09F307> MŠtodes d'arrencada per a usos especials d'aquest {$LB_MEDIA}.
-<09F407> MŠtodes addicionals d'arrencada; mode de rescat.
-<09F507> Rep…s dels par…metres especials d'arrencada.
-<09F607> Par…metres especials per algunes m…quines.
-<09F707> Par…metres especials per certes controladores de discs.
-<09F807> Par…metres especials pel sistema d'instalúlaci¢.
-<09F907> Com obtenir ajuda.
-<09F1007> Copyrights i garanties.
-
-Per a F1-F9 premeu control amb F i llavors el nombre 1-9
-Per a F10 premeu control amb F i llavors el nombre 0
-
-
-
-Premeu F2 a F10 per m‚s detalls, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f1.txt.live b/templates/syslinux/ca/f1.txt.live
deleted file mode 100644
index f7b7525..0000000
--- a/templates/syslinux/ca/f1.txt.live
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fBenvingut a Debian GNU/Linux!07 09F107
-
-Aix• ‚s una Debian {$LB_DISTRIBUTION} live dins un {$LB_MEDIA}.
-Fet el {$LB_DATE}.
-
-0fMEN£ DE LES AJUDES07
-
-0fTECLA TEMA07
-
-<09F107> Aquesta p…gina, l'¡ndex.
-<09F207> Prerequisits per instalúlar Debian.
-<09F307> MŠtodes d'arrencada per a usos especials d'aquest {$LB_MEDIA}
-<09F407> MŠtodes addicionals d'arrencada.
-<09F507> Rep…s dels par…metres especials d'arrencada.
-<09F607> Par…metres especials per algunes m…quines.
-<09F707> Par…metres especials per certes controladores de discs.
-<09F807> Par…metres especials pel sistema d'arrencada.
-<09F907> Com obtenir ajuda.
-<09F1007> Copyrights i garanties.
-
-Per a F1-F9 premeu control amb F i llavors el nombre 1-9
-Per a F10 premeu control amb F i llavors el nombre 0
-
-
-
-Premeu F2 a F10 per m‚s detalls, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f10.txt b/templates/syslinux/ca/f10.txt
deleted file mode 100644
index 217d106..0000000
--- a/templates/syslinux/ca/f10.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fCOPYRIGHTS I GARANTIES07 09F1007
-
-Debian GNU/Linux t‚ Copyright (C) 1993-2010 de Software in the Public Interest,
-i altres.
-
-El sistema Debian GNU/Linux ‚s pot redistribuir lliurement. DesprŠs de la
-instalúlaci¢, podeu consultar els termes exactes de distribuci¢ de cada paquet
-en el corresponent fitxer /usr/share/doc/0bnomdelpaquet07/copyright.
-
-Debian GNU/Linux ve sense 0fCAP MENA DE GARANTIA07, fins al punt on ho permeti
-la llei aplicable.
-
----
-
-Aquest sistema Debian Live ha estat constru‹t amb live-build, versi¢ {$LB_VERSION}.
-
-M‚s informaci¢ del projecte Debian Live es pot trobar a
-<http://live.debian.net/>.
-
-
-
-
-
-Preneu F1control i F seguit de 1 per el men£ d'ajuda, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f2.txt.install b/templates/syslinux/ca/f2.txt.install
deleted file mode 100644
index 32a3ac1..0000000
--- a/templates/syslinux/ca/f2.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPREREQUISITS PER A USAR DEBIAN07 09F207
-
-Heu de tenir un m¡nim de 64MB de RAM per usar aquest sistema Debian Live.
-
-Vegeu el Manual Live o el PUF (FAQ) per a m‚s informarci¢; tot dos disponibles
-a la web de Debian Live, 0fhttp://live.debian.net/07
-
-
-Heu de tenir al manco 32 megabytes de RAM per a usar el instalúlador de Debian.
-
-Heu de tenir espai en el disc dur per a crear una nova partici¢ de disc
-de al manco 256 megabytes per a instalúlar el sistema base. Necessitar… m‚s
-espai de disc per a instalúlar paquets addicionals, depenent de quŠ desitgi fer
-amb el seu sistema Debian.
-
-Vegeu el manual d'instalúlaci¢ o les PUF per a m‚s informaci¢; tot dos documents
-estan a la seva disposici¢ a la web de Debian, 0fhttp://www.debian.org/07
-
-Gr…cies per seleccionar Debian!
-
-
-
-
-Preneu F1control i F i llavors 1 per veure el men£ d'ajuda, o ENTER per a
\ No newline at end of file
diff --git a/templates/syslinux/ca/f2.txt.live b/templates/syslinux/ca/f2.txt.live
deleted file mode 100644
index c1c595d..0000000
--- a/templates/syslinux/ca/f2.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPREREQUISITS PER A USAR DEBIAN07 09F207
-
-Heu de tenir un m¡nim de 64MB de RAM per usar aquest sistema Debian Live.
-
-Vegeu el Manual Live o el PUF (FAQ) per a m‚s informarci¢; tot dos disponibles
-a la web de Debian Live, 0fhttp://live.debian.net/07
-
-Gr…cies per seleccionar Debian!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
\ No newline at end of file
diff --git a/templates/syslinux/ca/f3.txt.install b/templates/syslinux/ca/f3.txt.install
deleted file mode 100644
index 9700bb2..0000000
--- a/templates/syslinux/ca/f3.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMŠTODES D'ARRENCADA07 09F307
-
-0fMŠtodes d'arrancada disponibles:07
-
-0flive07
- Inicia el sistema live -- aquest es el mŠtode de {$LB_MEDIA} per defecte.
-0flivefailsafe07
- Inicia el sistema en mode a prova de falles.
-0finstall07
- Inicia la instalúlaci¢.
-0fexpert07
- Inicia la instalúlaci¢ en mode d'experts, per tenir el m…xim control.
-
-Per usar un d'aquests mŠtodes d'arrencada, escriviu-lo a l'indicador d'ordres,
-seguit opcionalment dels par…metres que convinguin. Per exemple:
- boot: install acpi=off
-
-Si dubteu, haur¡eu d'usar el mŠtode per defecte, sense cap par…metre especial,
-prenent simplement la tecla ENTER a l'indicador d'ordres.
-
-Excepte en el mode d'experts, els missatges d'arrancada seran suprimits.
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
diff --git a/templates/syslinux/ca/f3.txt.install.g-i b/templates/syslinux/ca/f3.txt.install.g-i
deleted file mode 100644
index 1dc0d97..0000000
--- a/templates/syslinux/ca/f3.txt.install.g-i
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMŠTODES D'ARRENCADA07 09F307
-
-0fMŠtodes d'arrancada disponibles:07
-
-0flive07
- Inicia el sistema live -- aquest es el mŠtode de {$LB_MEDIA} per defecte.
-0flivefailsafe07
- Inicia el sistema en mode a prova de falles.
-0finstall07 or 0finstallgui07
- Inicia la instalaci¢ utilitzant el instalúlador normal o el gr…fic.
-0fexpert07 and 0fexpertgui07
- Inicia la instalúlaci¢ en mode d'experts, per tenir el m…xim control.
-
-Per usar un d'aquests mŠtodes d'arrencada, escriviu-lo a l'indicador d'ordres,
-seguit opcionalment dels par…metres que convinguin. Per exemple:
- boot: install acpi=off
-
-Si dubteu, haur¡eu d'usar el mŠtode per defecte, sense cap par…metre especial,
-prenent simplement la tecla ENTER a l'indicador d'ordres.
-
-Excepte en el mode d'experts, els missatges d'arrancada seran suprimits.
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
diff --git a/templates/syslinux/ca/f3.txt.live b/templates/syslinux/ca/f3.txt.live
deleted file mode 100644
index 43e8cff..0000000
--- a/templates/syslinux/ca/f3.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMŠTODES D'ARRENCADA07 09F307
-
-0fMŠtodes d'arrancada disponibles:07
-
-0flive07
- Inicia el sistema live -- aquest es el mŠtode de {$LB_MEDIA} per defecte.
-0flivefailsafe07
- Inicia el sistema en mode a prova de falles.
-
-
-
-
-
-
-
-Per usar un d'aquests mŠtodes d'arrencada, escriviu-lo a l'indicador d'ordres,
-seguit opcionalment dels par…metres que convinguin. Per exemple:
- boot: install acpi=off
-
-Si dubteu, haur¡eu d'usar el mŠtode per defecte, sense cap par…metre especial,
-prenent simplement la tecla ENTER a l'indicador d'ordres.
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
diff --git a/templates/syslinux/ca/f4.txt.install b/templates/syslinux/ca/f4.txt.install
deleted file mode 100644
index d28ea3c..0000000
--- a/templates/syslinux/ca/f4.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMODE DE RESCAT07 09F407
-
-0fTriau un d'aquests mŠtodes d'arrencada per recuperar una instalúlaci¢ existent07
-
-0frescue07
- Inicia en el mode de rescat.
-
-0fmemtest07
- Inicia el test de mem•ria per escanejar la RAM cercant errors.
-0ffloppy07, 0fdisk107 o 0fdisk207
- Inicia des de el disquet, primer o segon disc dur.
-
-
-
-Per usar un d'aquests mŠtodes d'arrencada, escriviu-lo a l'indicador d'ordres,
-seguit opcionalment dels par…metres que convinguin. Per exemple:
-
- boot: rescue acpi=off
-
-
-
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
\ No newline at end of file
diff --git a/templates/syslinux/ca/f4.txt.install.g-i b/templates/syslinux/ca/f4.txt.install.g-i
deleted file mode 100644
index 6ca4bc9..0000000
--- a/templates/syslinux/ca/f4.txt.install.g-i
+++ /dev/null
@@ -1,26 +0,0 @@
-0fMODE DE RESCAT07 09F407
-
-0fTriau un d'aquests mŠtodes d'arrencada per recuperar una instalúlaci¢ existent07
-
-0frescue07
- Inicia en el mode de rescat.
-0frescuegui07
- Inicia en el mode de rescat utilitzant el instalúlador gr…fic.
-
-0fmemtest07
- Inicia el test de mem•ria per escanejar la RAM cercant errors.
-0ffloppy07, 0fdisk107 o 0fdisk207
- Inicia des de el disquet, primer o segon disc dur.
-
-
-
-Per usar un d'aquests mŠtodes d'arrencada, escriviu-lo a l'indicador d'ordres,
-seguit opcionalment dels par…metres que convinguin. Per exemple:
-
- boot: rescue acpi=off
-
-
-
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
\ No newline at end of file
diff --git a/templates/syslinux/ca/f4.txt.live b/templates/syslinux/ca/f4.txt.live
deleted file mode 100644
index edf5622..0000000
--- a/templates/syslinux/ca/f4.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMODES ADDICIONALS D'ARRENCADA07 09F407
-
-0fMŠtodes d'arrencada disponibles:07
-
-0fmemtest07
- Inicia el test de mem•ria per escanejar la RAM cercant errors.
-0ffloppy07, 0fdisk107 o 0fdisk207
- Inicia des de el disquet, primer o segon disc dur.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
\ No newline at end of file
diff --git a/templates/syslinux/ca/f5.txt b/templates/syslinux/ca/f5.txt
deleted file mode 100644
index dd946dc..0000000
--- a/templates/syslinux/ca/f5.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR…METRES ESPECIALS D'ARRENCADA - DESCRIPCI¢ GENERAL07 09F507
-
-En alguns sistemes, potser us cal afegir algun par…metre a l'indicador
-0fboot:07 per tal d'arrencar el sistema. Per exemple, Linux pot no ser capa‡
-de detectar autom…ticament el vostre maquinari, i potser us cal indicar-li
-expl¡citament la seva ubicaci¢ o tipus per tal que sigui reconegut.
-
-Per m‚s informaci¢ sobre els par…metres d'arrencada disponibles, premeu:
-
- <09F607> -- par…metres d'arrencada per m…quines especials
- <09F707> -- par…metres d'arrencada per diverses controladores de disc
- <09F807> -- par…metres d'arrencada compresos pel sistema d'instalúlaci¢
-
-Per especificar un par…metre per a un m•dul del nucli, ho ha de indicar de la
-segent forma m•dul.par…metre=valor, per exemple: libata.atapi_enabled=1
-
-
-
-
-
-
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
\ No newline at end of file
diff --git a/templates/syslinux/ca/f6.txt b/templates/syslinux/ca/f6.txt
deleted file mode 100644
index a46faa6..0000000
--- a/templates/syslinux/ca/f6.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR…METRES ESPECIALS D'ARRENCADA - DIVERSOS DISPOSITIUS07 09F607
-
-Podeu usar els segents par…metres a l'indicador 0fboot:07,
-en combinaci¢ amb el mŠtode d'arrencada (vegeu <09F307>).
-Si useu nombres hexadecimals s'ha de posar el prŠfix 0x (p.ex., 0x300).
-0f
-MAQUINARI PAR METRE A ESPECIFICAR07
-IBM PS/1 o ValuePoint (disc IDE) 0fhd=0bcilindres0f,0bcap‡als0f,0bsectors07
-Qualcuns ThinkPads de IBM 0ffloppy.floppy=thinkpad07
-Protegir regions de ports d'E/S 0freserve=0biobase0f,0bextent07[0f,0b...07]
-Port…tils amb problemes a la pantalla 0fvga=77107
-Usar el primer port sŠrie a 9600 baud 0fconsole=ttyS0,9600n807
-For‡ar l'£s del controlador genŠric IDE 0fgeneric.all_generic_ide=107
-
-Possibles solucions temporals a bloqueixos o fallades de maquinari:
-Desactivar la interrupci¢ de l'APIC 0fnoapic nolapic07
-Desactivar enrutado d'interrupcions ACPI 0facpi=noirq07 o 0facpi=off07
-Desactivar l'USB 0fnousb07
-
-Per exemple:
- boot: install vga=771 noapic nolapic
-
-
-Preneu F1control i F, i llavors 1 per veure el men£ d'ajuda, o ENTER per a
\ No newline at end of file
diff --git a/templates/syslinux/ca/f7.txt b/templates/syslinux/ca/f7.txt
deleted file mode 100644
index 53e406f..0000000
--- a/templates/syslinux/ca/f7.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR…METRES ESPECIALS D'ARRENCADA - DISCOS DIVERSOS07 09F707
-
-Podeu usar els segents par…metres a l'indicador 0fboot:07,
-en combinaci¢ amb el mŠtode d'arrencada (vegeu <09F307>).
-0f
-MAQUINARI PAR…METRE PER ESPECIFICAR07
-Adaptec 151x, 152x 0faha152x.aha152x=0biobase07[0f,0birq07[0f,0bscsi-id07[0f,0breconnect07]]]
-Adaptec 1542 0faha1542.aha1542=0biobase07[0f,0bbuson0f,0bbusoff07[0f,0bdmaspeed07]]
-Adaptec 274x, 284x 0faic7xxx.aic7xxx=no_reset07 (habilitat si no ‚s zero)
-BusLogic SCSI Hosts 0fBusLogic.BusLogic=0biobase07
-Certes m…quines Dell 0faic7xxx.aic7xxx=no_probe07
-
-Aquesta llista ‚s incompleta, vegeu el fitxer del nucli kernel-parameters.txt
-per a m‚s informaci¢.
-
-
-
-
-
-Per exemple:
- boot: install aic7xxx.aic7xxx=no_probe
-
-
-Premeu F1control i F seguit de 1 per el men£ d'ajuda, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f8.txt.install b/templates/syslinux/ca/f8.txt.install
deleted file mode 100644
index d1eddf8..0000000
--- a/templates/syslinux/ca/f8.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR…METRES ESPECIALS DE ARRENCADA - SISTEMA DE INSTALACI¢07 09F807
-
-Podeu usar els segents par…metres a l'indicador 0fboot:07,
-en combinaci¢ amb el mŠtode d'arrencada (vegeu <09F307>). Aquests
-par…metres controlen el funcionament del sistema d'instalúlaci¢.
-0f
-RESULTAT PAR·METRE07
-Debugat prolix 0fDEBCONF_DEBUG=507
-Debuga la seqŠncia d'inici 0fBOOT_DEBUG=2|307
-Deshabilita el framebuffer 0ffb=false07
-No inicia el subsistema PCMCIA 0fhw-detect/start_pcmcia=false07
-For‡a configuraci¢ de xarxa est…tica 0fnetcfg/disable_dhcp=true07
-Escull el mapa de teclat 0fbootkbd=es07
-Usa tty en braille 0fbrltty=driver,device,texttable07
-Dona accessibilitat amb un tema d'alt contrast 0ftheme=dark07
-Determina labors especials 0ftasks="kde-desktop, standard"07
-
-
-
-Per exemple:
- boot: install fb=false
-
-
-Premeu F1control i F seguit de 1 per el men£ d'ajuda, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f8.txt.live b/templates/syslinux/ca/f8.txt.live
deleted file mode 100644
index caed886..0000000
--- a/templates/syslinux/ca/f8.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR…METRES ESPECIALS D'ARRENCADA07 09F807
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Premeu F1control i F seguit de 1 per el men£ d'ajuda, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f9.txt.install b/templates/syslinux/ca/f9.txt.install
deleted file mode 100644
index 5c7cf2b..0000000
--- a/templates/syslinux/ca/f9.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fOBTENCI¢ D'AJUDA07 09F907
-
-Si no podeu intalúlar aquest Debian, no desespereu! L'equip de Debian
-est… preparat per ajudar-vos! Ens interesa especialment trobar problemes de
-instalaci¢, perquŠ generalment no afecten nom‚s a 0funa07 persona.
-O b‚ ja haurem sentit a parlar del vostre problema i us podrem oferir una
-r…pida soluci¢, o b‚ ens plaur… que ens l'expliqui i provar d'esmenar-lo
-plegats, i aix¡ el proper usuari que tingui el mateix problema podr…
-beneficiar-se de la vostra experiŠncia!
-
-Vegeu el manual de instalúlaci¢ o les PMF (FAQ) per a m‚s informaci¢;
-Aquests documents estan disponibles al lloc web de Debian:
-0fhttp://www.debian.org/07
-
-Si no pot executar el sistema Debian Live, vegeu el manual de instalúlaci¢
-o les PMF (FAQ) per a m‚s informaci¢. Aquests documents estan disponibles
-en la web de Debian, 0fhttp://live.debian.net/07
-
-
-
-
-
-
-Premeu F1control i F seguit de 1 per el men£ d'ajuda, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/ca/f9.txt.live b/templates/syslinux/ca/f9.txt.live
deleted file mode 100644
index dbb04a5..0000000
--- a/templates/syslinux/ca/f9.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fOBTENCI¢ D'AJUDA07 09F907
-
-Si no podeu intalúlar aquest Debian, no desespereu! L'equip de Debian
-est… preparat per ajudar-vos! Ens interesa especialment trobar problemes de
-arranque, perquŠ generalment no afecten nom‚s a 0funa07 persona.
-O b‚ ja haurem sentit a parlar del vostre problema i us podrem oferir una
-r…pida soluci¢, o b‚ ens plaur… que ens l'expliqui i provar d'esmenar-lo
-plegats, i aix¡ el proper usuari que tingui el mateix problema podr…
-beneficiar-se de la vostra experiŠncia!
-
-Vegeu el manual del Debian Live o les PMF (FAQ) per a m‚s informaci¢;
-Aquests documents estan disponibles al lloc web de Debian:
-0fhttp://live.debian.net/07
-
-
-
-
-
-
-
-
-
-
-Premeu F1control i F seguit de 1 per el men£ d'ajuda, o INTRO per fer el
\ No newline at end of file
diff --git a/templates/syslinux/common/live.cfg b/templates/syslinux/common/live.cfg
deleted file mode 100644
index b5a6e5c..0000000
--- a/templates/syslinux/common/live.cfg
+++ /dev/null
@@ -1,17 +0,0 @@
-{$LINUX_LIVE}
-
-{$LINUX_INSTALL}
-
-{$MEMTEST}
-
-#label floppy
-# localboot 0x00
-
-#label disk1
-# localboot 0x80
-
-#label disk2
-# localboot 0x81
-
-#label nextboot
-# localboot -1
diff --git a/templates/syslinux/en/boot.txt b/templates/syslinux/en/boot.txt
deleted file mode 100644
index 94e73e6..0000000
--- a/templates/syslinux/en/boot.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-{$SPLASH}
-
-Press F1control and F then 1 for help, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f1.txt.install b/templates/syslinux/en/f1.txt.install
deleted file mode 100644
index d31cefa..0000000
--- a/templates/syslinux/en/f1.txt.install
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fWelcome to Debian GNU/Linux!07 09F107
-
-This is a Debian {$LB_DISTRIBUTION} combined live and installation {$LB_MEDIA}.
-It was built on {$LB_DATE}.
-
-0fHELP INDEX07
-
-0fKEY TOPIC07
-
-<09F107> This page, the help index.
-<09F207> Prerequisites for installing Debian.
-<09F307> Boot methods for special ways of using this {$LB_MEDIA}
-<09F407> Additional boot methods; rescue mode.
-<09F507> Special boot parameters, overview.
-<09F607> Special boot parameters for special machines.
-<09F707> Special boot parameters for selected disk controllers.
-<09F807> Special boot parameters for the install system.
-<09F907> How to get help.
-<09F1007> Copyrights and warranties.
-
-For F1-F9 type control and F then the digit 1-9
-For F10 type control and F then the digit 0
-
-
-
-Press F2 through F10 for details, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f1.txt.live b/templates/syslinux/en/f1.txt.live
deleted file mode 100644
index 4075fee..0000000
--- a/templates/syslinux/en/f1.txt.live
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fWelcome to Debian GNU/Linux!07 09F107
-
-This is a Debian {$LB_DISTRIBUTION} live {$LB_MEDIA}.
-It was built on {$LB_DATE}.
-
-0fHELP INDEX07
-
-0fKEY TOPIC07
-
-<09F107> This page, the help index.
-<09F207> Prerequisites for installing Debian.
-<09F307> Boot methods for special ways of using this {$LB_MEDIA}
-<09F407> Additional boot methods.
-<09F507> Special boot parameters, overview.
-<09F607> Special boot parameters for special machines.
-<09F707> Special boot parameters for selected disk controllers.
-<09F807> Special boot parameters for the install system.
-<09F907> How to get help.
-<09F1007> Copyrights and warranties.
-
-For F1-F9 type control and F then the digit 1-9
-For F10 type control and F then the digit 0
-
-
-
-Press F2 through F10 for details, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f10.txt b/templates/syslinux/en/f10.txt
deleted file mode 100644
index 6780e67..0000000
--- a/templates/syslinux/en/f10.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fCOPYRIGHTS AND WARRANTIES07 09F1007
-
-Debian GNU/Linux is Copyright (C) 1993-2010 Software in the Public Interest,
-and others.
-
-The Debian GNU/Linux system is freely redistributable. After installation,
-the exact distribution terms for each package are described in the
-corresponding file /usr/share/doc/0bpackagename07/copyright.
-
-Debian GNU/Linux comes with 0fABSOLUTELY NO WARRANTY07, to the extent
-permitted by applicable law.
-
----
-
-This Debian Live system was built with live-build, version {$LB_VERSION}.
-
-More information about the Debian Live project can be found at
-<http://live.debian.net/>.
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f2.txt.install b/templates/syslinux/en/f2.txt.install
deleted file mode 100644
index a67118b..0000000
--- a/templates/syslinux/en/f2.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPREREQUISITES FOR USING DEBIAN07 09F207
-
-You must have at least 64 megabytes of RAM to run this Debian Live system.
-
-See the Live Manual or the FAQ for more information; both documents are
-available at the Debian Live web site, 0fhttp://live.debian.net/07
-
-
-You must have at least 44 megabytes of RAM to use the Debian installer.
-
-You should have space on your hard disk to create a new disk partition
-of at least 500 megabytes to install the base system. You'll need more
-disk space to install additional packages, depending on what you wish
-to do with your new Debian system.
-
-See the Installation Guide or the FAQ for more information; both
-documents are available at the Debian web site, 0fhttp://www.debian.org/07
-
-Thank you for choosing Debian!
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f2.txt.live b/templates/syslinux/en/f2.txt.live
deleted file mode 100644
index 3c0fea0..0000000
--- a/templates/syslinux/en/f2.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPREREQUISITES FOR RUNNING DEBIAN07 09F207
-
-You must have at least 64 megabytes of RAM to run this Debian Live system.
-
-See the Live Manual or the FAQ for more information; both documents are
-available at the Debian Live web site, 0fhttp://live.debian.net/07
-
-Thank you for choosing Debian!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f3.txt.install b/templates/syslinux/en/f3.txt.install
deleted file mode 100644
index 847c6ef..0000000
--- a/templates/syslinux/en/f3.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fBOOT METHODS07 09F307
-
-0fAvailable boot methods:07
-
-0flive07
- Start the live system -- this is the default {$LB_MEDIA} method.
-0flivefailsafe07
- Start the live system in fail-safe mode.
-0finstall07
- Start the installation.
-0fexpert07
- Start the installation in expert mode, for maximum control.
-
-To use one of these boot methods, type it at the prompt, optionally
-followed by any boot parameters. For example:
- boot: install acpi=off
-
-If unsure, you should use the default boot method, with no special
-parameters, by simply pressing enter at the boot prompt.
-
-Except in expert mode, non-critical kernel boot messages are suppressed.
-
-
-Press F1control and F then 1 for the help index, or ENTER to
diff --git a/templates/syslinux/en/f3.txt.install.g-i b/templates/syslinux/en/f3.txt.install.g-i
deleted file mode 100644
index e5fa7ba..0000000
--- a/templates/syslinux/en/f3.txt.install.g-i
+++ /dev/null
@@ -1,24 +0,0 @@
-0fBOOT METHODS07 09F307
-
-0fAvailable boot methods:07
-
-0flive07
- Start the live system -- this is the default {$LB_MEDIA} method.
-0flivefailsafe07
- Start the live system in fail-safe mode.
-0finstall07 or 0finstallgui07
- Start the installation using the normal or graphical installer.
-0fexpert07 and 0fexpertgui07
- Start the installation in expert mode, for maximum control.
-
-To use one of these boot methods, type it at the prompt, optionally
-followed by any boot parameters. For example:
- boot: install acpi=off
-
-If unsure, you should use the default boot method, with no special
-parameters, by simply pressing enter at the boot prompt.
-
-Except in expert mode, non-critical kernel boot messages are suppressed.
-
-
-Press F1control and F then 1 for the help index, or ENTER to
diff --git a/templates/syslinux/en/f3.txt.live b/templates/syslinux/en/f3.txt.live
deleted file mode 100644
index d602ccc..0000000
--- a/templates/syslinux/en/f3.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fBOOT METHODS07 09F307
-
-0fAvailable boot methods:07
-
-0flive07
- Start the live system -- this is the default {$LB_MEDIA} method.
-0flivefailsafe07
- Start the live system in fail-safe mode.
-
-
-
-
-
-
-
-To use one of these boot methods, type it at the prompt, optionally
-followed by any boot parameters. For example:
- boot: live acpi=off
-
-If unsure, you should use the default boot method, with no special
-parameters, by simply pressing enter at the boot prompt.
-
-
-Press F1control and F then 1 for the help index, or ENTER to
diff --git a/templates/syslinux/en/f4.txt.install b/templates/syslinux/en/f4.txt.install
deleted file mode 100644
index 3306e79..0000000
--- a/templates/syslinux/en/f4.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fRESCUE MODE07 09F407
-
-0fUse one of these boot methods to rescue an existing install:07
-
-0frescue07
- Boot into rescue mode.
-
-0fmemtest07
- Start memtest to scan your RAM for errors.
-0ffloppy07, 0fdisk107 or 0fdisk207
- Boot from the floppy, first or second hard disk.
-
-
-
-To use one of these boot methods, type it at the prompt, optionally
-followed by any boot parameters. For example:
-
- boot: rescue acpi=off
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f4.txt.install.g-i b/templates/syslinux/en/f4.txt.install.g-i
deleted file mode 100644
index 79592d3..0000000
--- a/templates/syslinux/en/f4.txt.install.g-i
+++ /dev/null
@@ -1,23 +0,0 @@
-0fRESCUE MODE07 09F407
-
-0fUse one of these boot methods to rescue an existing install:07
-
-0frescue07
- Boot into rescue mode.
-0frescuegui07
- Boot into rescue mode using the graphical installer.
-
-0fmemtest07
- Start memtest to scan your RAM for errors.
-0ffloppy07, 0fdisk107 or 0fdisk207
- Boot from the floppy, first or second hard disk.
-
-To use one of these boot methods, type it at the prompt, optionally
-followed by any boot parameters. For example:
-
- boot: rescue acpi=off
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
diff --git a/templates/syslinux/en/f4.txt.live b/templates/syslinux/en/f4.txt.live
deleted file mode 100644
index be53488..0000000
--- a/templates/syslinux/en/f4.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fADDITIONAL BOOT METHODS07 09F407
-
-0fAvailable boot methods:07
-
-0fmemtest07
- Start memtest to scan your RAM for errors.
-0ffloppy07, 0fdisk107 or 0fdisk207
- Boot from the floppy, first or second hard disk.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f5.txt b/templates/syslinux/en/f5.txt
deleted file mode 100644
index 7d01b24..0000000
--- a/templates/syslinux/en/f5.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fSPECIAL BOOT PARAMETERS - OVERVIEW07 09F507
-
-On a few systems, you may need to specify a parameter at the 0fboot:07
-prompt in order to boot the system. For example, Linux may not be able
-to autodetect your hardware, and you may need to explicitly specify
-its location or type for it to be recognized.
-
-For more information about what boot parameters you can use, press:
-
- <09F607> -- boot parameters for special machines
- <09F707> -- boot parameters for various disk controllers
- <09F807> -- boot parameters understood by the install system
-
-Note that to specify a parameter for a particular kernel module, use the form
-module.param=value, for example: libata.atapi_enabled=1
-
-
-
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f6.txt b/templates/syslinux/en/f6.txt
deleted file mode 100644
index 5ef45e2..0000000
--- a/templates/syslinux/en/f6.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fSPECIAL BOOT PARAMETERS - VARIOUS HARDWARE07 09F607
-
-You can use the following boot parameters at the 0fboot:07 prompt,
-in combination with the boot method (see <09F307>).
-If you use hex numbers you have to use the 0x prefix (e.g., 0x300).
-0f
-HARDWARE PARAMETER TO SPECIFY07
-IBM PS/1 or ValuePoint (IDE disk) 0fhd=0bcylinders0f,0bheads0f,0bsectors07
-Some IBM ThinkPads 0ffloppy.floppy=thinkpad07
-Protect I/O port regions 0freserve=0biobase0f,0bextent07[0f,0b...07]
-Laptops with screen display problems 0fvga=77107
-Use first serial port at 9600 baud 0fconsole=ttyS0,9600n807
-Force use of generic IDE driver 0fgeneric.all_generic_ide=107
-
-Possible (temporary) workarounds for lockups or other hardware failures:
-disable buggy APIC interrupt routing 0fnoapic nolapic07
-(partly) disable ACPI 0facpi=noirq07 or 0facpi=off07
-disable USB 0fnousb07
-
-For example:
- boot: install vga=771 noapic nolapic
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f7.txt b/templates/syslinux/en/f7.txt
deleted file mode 100644
index ca685f0..0000000
--- a/templates/syslinux/en/f7.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fSPECIAL BOOT PARAMETERS - VARIOUS DISK DRIVES07 09F707
-
-You can use the following boot parameters at the 0fboot:07 prompt,
-in combination with the boot method (see <09F307>).
-0f
-HARDWARE PARAMETER TO SPECIFY07
-Adaptec 151x, 152x 0faha152x.aha152x=0biobase07[0f,0birq07[0f,0bscsi-id07[0f,0breconnect07]]]
-Adaptec 1542 0faha1542.aha1542=0biobase07[0f,0bbuson0f,0bbusoff07[0f,0bdmaspeed07]]
-Adaptec 274x, 284x 0faic7xxx.aic7xxx=no_reset07 (enabled if non-zero)
-BusLogic SCSI Hosts 0fBusLogic.BusLogic=0biobase07
-Certain DELL machines 0faic7xxx.aic7xxx=no_probe07
-
-This list is incomplete, see the kernel's kernel-parameters.txt file
-for more.
-
-
-
-
-
-For example:
- boot: install aic7xxx.aic7xxx=no_probe
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/en/f8.txt.install b/templates/syslinux/en/f8.txt.install
deleted file mode 100644
index 15ec143..0000000
--- a/templates/syslinux/en/f8.txt.install
+++ /dev/null
@@ -1,23 +0,0 @@
-0fSPECIAL BOOT PARAMETERS - INSTALLATION SYSTEM07 09F807
-
-You can use the following boot parameters at the 0fboot:07 prompt,
-in combination with the boot method (see <09F307>). These parameters
-control how the installer works.
-0f
-RESULT PARAMETER07
-Verbose debugging 0fDEBCONF_DEBUG=507
-Debug boot sequence 0fBOOT_DEBUG=2|307
-Disable framebuffer 0ffb=false07
-Don't start PCMCIA 0fhw-detect/start_pcmcia=false07
-Force static network config 0fnetcfg/disable_dhcp=true07
-Set keyboard map 0fbootkbd=es07
-Use Braille tty 0fbrltty=driver,device,texttable07
-Use high contrast accessibility theme 0ftheme=dark07
-Use special tasks 0ftasks="kde-desktop, standard"07
-
-
-
-For example:
- boot: install fb=false
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f8.txt.live b/templates/syslinux/en/f8.txt.live
deleted file mode 100644
index d785f54..0000000
--- a/templates/syslinux/en/f8.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fSPECIAL BOOT PARAMETERS07 09F807
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f9.txt.install b/templates/syslinux/en/f9.txt.install
deleted file mode 100644
index ba125bf..0000000
--- a/templates/syslinux/en/f9.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fGETTING HELP07 09F907
-
-If you can't install Debian, don't despair! The Debian team is ready to
-help you! We are especially interested in hearing about installation
-problems, because in general they don't happen to only 0fone07 person.
-We've either already heard about your particular problem and can dispense a
-quick fix, or we would like to hear about it and work through it with you,
-and the next user who comes up with the same problem will profit from your
-experience!
-
-See the Installation Guide or the FAQ for more information; both
-documents are available at the Debian web site, 0fhttp://www.debian.org/07
-
-If you can't run the Debian Live system, see the manual or
-the FAQ for more information; both documents are available at
-the Debian web site, 0fhttp://live.debian.net/07
-
-
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/en/f9.txt.live b/templates/syslinux/en/f9.txt.live
deleted file mode 100644
index d0b6c12..0000000
--- a/templates/syslinux/en/f9.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fGETTING HELP07 09F907
-
-If you can't run Debian, don't despair! The Debian team is ready to
-help you! We are especially interested in hearing about boot
-problems, because in general they don't happen to only 0fone07 person.
-We've either already heard about your particular problem and can dispense a
-quick fix, or we would like to hear about it and work through it with you,
-and the next user who comes up with the same problem will profit from your
-experience!
-
-See the Live Manual or the FAQ for more information; both
-documents are available at the Debian web site,
-0fhttp://live.debian.net/07
-
-
-
-
-
-
-
-
-
-
-Press F1control and F then 1 for the help index, or ENTER to
\ No newline at end of file
diff --git a/templates/syslinux/es/boot.txt b/templates/syslinux/es/boot.txt
deleted file mode 100644
index b86ed98..0000000
--- a/templates/syslinux/es/boot.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-{$SPLASH}
-
-Pulse F1control y F, y entonces 1 para obtener ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f1.txt.install b/templates/syslinux/es/f1.txt.install
deleted file mode 100644
index da9c0e4..0000000
--- a/templates/syslinux/es/f1.txt.install
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fBienvenido a Debian GNU/Linux!07 09F107
-
-Esto es una Debian {$LB_DISTRIBUTION} combinada live e instalaci¢n de {$LB_MEDIA}.
-Fue construida el {$LB_DATE}.
-
-0fMEN£ DE AYUDA07
-
-0fTECLA TEMA07
-
-<09F107> Esta p gina, el ¡ndice.
-<09F207> Prerrequisitos para instalar Debian.
-<09F307> M‚todos de arranques especiales usando este {$LB_MEDIA}
-<09F407> M‚todos adicionales de arranque; modo de rescate.
-<09F507> Repaso de los par metros especiales de arranque.
-<09F607> Par metros especiales para algunas m quinas especiales.
-<09F707> Par metros especiales para ciertas controladoras de disco.
-<09F807> Par metros especiales del sistema de instalaci¢n.
-<09F907> C¢mo obtener ayuda.
-<09F1007> Copyrights y garant¡as.
-
-Para las teclas F1-F9 pulse control y F y despu‚s el d¡gito 1-9
-Para F10 pulse control y F y el d¡gito 0
-
-
-
-Pulse de F2 a F10 para obtener m s detalles, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f1.txt.live b/templates/syslinux/es/f1.txt.live
deleted file mode 100644
index 378e34b..0000000
--- a/templates/syslinux/es/f1.txt.live
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fBienvenido a Debian GNU/Linux!07 09F107
-
-Esto es una Debian {$LB_DISTRIBUTION} live de {$LB_MEDIA}.
-Fue construida el {$LB_DATE}.
-
-0fMEN£ DE AYUDA07
-
-0fTECLA TEMA07
-
-<09F107> Esta p gina, el ¡ndice.
-<09F207> Prerrequisitos para instalar Debian.
-<09F307> M‚todos de arranques especiales usando este {$LB_MEDIA}.
-<09F407> M‚todos adicionales de arranque.
-<09F507> Repaso de los par metros especiales de arranque.
-<09F607> Par metros especiales para algunas m quinas especiales.
-<09F707> Par metros especiales para ciertas controladoras de disco.
-<09F807> Par metros especiales del sistema de arranque.
-<09F907> C¢mo obtener ayuda.
-<09F1007> Copyrights y garant¡as.
-
-Para las teclas F1-F9 pulse control y F y despu‚s el d¡gito 1-9
-Para F10 pulse control y F y el d¡gito 0
-
-
-
-Pulse de F2 a F10 para obtener m s detalles, o INTRO para
diff --git a/templates/syslinux/es/f10.txt b/templates/syslinux/es/f10.txt
deleted file mode 100644
index 36eedd7..0000000
--- a/templates/syslinux/es/f10.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fCOPYRIGHTS Y GARANT¡AS07 09F1007
-
-Debian GNU/Linux es Copyright (C) 1993-2010 de Software in the Public Interest,
-y otros.
-
-El sistema Debian GNU/Linux es libremente redistribuible. Despu‚s de la
-instalaci¢n, los t‚rminos exactos de distribuci¢n de cada paquete se describen
-en el correspondiente fichero /usr/share/doc/0bnombredelpaquete07/copyright.
-
-Debian GNU/Linux viene sin 0fABSOLUTAMENTE NINGUNA GARANT¡A07, hasta lo
-permitido por la ley.
-
----
-
-Este sistema Debian Live se construy¢ con live-build, versi¢n {$LB_VERSION}.
-
-M s informaci¢n en sobre el proyecto Debian Live puede encontrarse en
-<http://live.debian.net/>.
-
-
-
-
-
-Pulse F1control y F, y entonces 1 para obtener ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f2.txt.install b/templates/syslinux/es/f2.txt.install
deleted file mode 100644
index d1417cf..0000000
--- a/templates/syslinux/es/f2.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPRERREQUISITOS PARA USAR DEBIAN07 09F207
-
-Debe tener al menos 64 megabytes de RAM para ejecutar este sistema Debian Live.
-
-Lea el manual Live o el FAQ para m s informaci¢n; ambos documentos est n
-disponibles en la web de Debian, 0fhttp://live.debian.net/07
-
-
-Debe tener al menos 32 megabytes de RAM para usar el instalador de Debian.
-
-Debe tener espacio en el disco duro para crear una nueva partici¢n de disco
-de al menos 256 megabytes para instalar el sistema base. Necesitar m s
-espacio de disco para instalar paquetes adicionales, dependiendo de que desee
-hacer con su sistema Debian.
-
-Lea el manual de instalaci¢n o el FAQ para m s informaci¢n; ambos
-documentos est n disponibles en la web de Debian, 0fhttp://www.debian.org/07
-
-Gracias por elegir Debian!
-
-
-
-
-Pulse F1control y F y entonces 1 para el men£ de ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f2.txt.live b/templates/syslinux/es/f2.txt.live
deleted file mode 100644
index 67fab12..0000000
--- a/templates/syslinux/es/f2.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPRERREQUISITOS PARA USAR DEBIAN07 09F207
-
-Debe tener al menos 64 megabytes de RAM para ejecutar este sistema Debian Live.
-
-Lea el manual Live o el FAQ para m s informaci¢n; ambos documentos est n
-disponibles en la web de Debian, 0fhttp://live.debian.net/07
-
-Gracias por elegir Debian!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Pulse F1control y F y entonces 1 para el men£ de ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f3.txt.install b/templates/syslinux/es/f3.txt.install
deleted file mode 100644
index 86d8d48..0000000
--- a/templates/syslinux/es/f3.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fM‚TODOS DE ARRANQUE07 09F307
-
-0fM‚todos de arranque disponibles:07
-
-0flive07
- Inicia el sistema live -- ‚ste es el sistema en {$LB_MEDIA} predeterminado.
-0flivefailsafe07
- Inicia el sistema live en modo a prueba de fallos.
-0finstall07
- Inicia la instalaci¢n.
-0fexpert07
- Inicia la instalaci¢n en modo experto, para maximizar el control.
-
-Para usar uno de estos m‚todos, teclee uno en el indicador de ¢rdenes,
-seguido opcionalmente por uno de los par metros de arranque. Por ejemplo:
- boot: install acpi=off
-
-Si duda, deber¡a usar el m‚todo predeterminado, sin ning£n par metro
-especial, pulsando simplemente la tecla INTRO en el indicador de ¢rdenes.
-
-Excepto en el modo experto, no se mostrar n los mensajes no cr¡ticos.
-
-
-Pulse F1control y F, y luego 1 para ver el men£ de ayuda, o INTRO para
diff --git a/templates/syslinux/es/f3.txt.install.g-i b/templates/syslinux/es/f3.txt.install.g-i
deleted file mode 100644
index 7b18708..0000000
--- a/templates/syslinux/es/f3.txt.install.g-i
+++ /dev/null
@@ -1,24 +0,0 @@
-0fM‚TODOS DE ARRANQUE07 09F307
-
-0fM‚todos de arranque disponibles:07
-
-0flive07
- Inicia el sistema live -- ‚ste es el sistema en {$LB_MEDIA} por defecto.
-0flivefailsafe07
- Inicia el sistema live en modo a prueba de fallos.
-0finstall07 or 0finstallgui07
- Inicia la instalaci¢n usando el instalador normal o el gr fico.
-0fexpert07 and 0fexpertgui07
- Inicia la instalaci¢n en modo experto, para maximizar el control.
-
-Para usar uno de estos m‚todos, teclee uno en el indicador de ¢rdenes,
-seguido opcionalmente por uno de los par metros de arranque. Por ejemplo:
- boot: install acpi=off
-
-Si duda, deber¡a usar el m‚todo predeterminado, sin ning£n par metro
-especial, pulsando simplemente la tecla INTRO en el indicador de ¢rdenes.
-
-Excepto en el modo experto, no se mostrar n los mensajes no cr¡ticos.
-
-
-Pulse F1control y F, y luego 1 para ver el men£ de ayuda, o INTRO para
diff --git a/templates/syslinux/es/f3.txt.live b/templates/syslinux/es/f3.txt.live
deleted file mode 100644
index e9291ae..0000000
--- a/templates/syslinux/es/f3.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fM‚TODOS DE ARRANQUE07 09F307
-
-0fM‚todos de arranque disponibles:07
-
-0flive07
- Inicia el sistema live -- ‚ste es el sistema en {$LB_MEDIA} por defecto.
-0flivefailsafe07
- Inicia el sistema live en modo a prueba de fallos.
-
-
-
-
-
-
-
-Para usar uno de estos m‚todos, teclee uno en el indicador de ¢rdenes,
-seguido opcionalmente por uno de los par metros de arranque. Por ejemplo:
- boot: install acpi=off
-
-Si duda, deber¡a usar el m‚todo predeterminado, sin ning£n par metro
-especial, pulsando simplemente la tecla INTRO en el indicador de ¢rdenes.
-
-
-Pulse F1control y F, y luego 1 para ver el men£ de ayuda, o INTRO para
diff --git a/templates/syslinux/es/f4.txt.install b/templates/syslinux/es/f4.txt.install
deleted file mode 100644
index 321d9be..0000000
--- a/templates/syslinux/es/f4.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMODO DE RESCATE07 09F407
-
-0fEscriba un m‚todo de arranque para rescatar una instalaci¢n existente07
-
-0frescue07
- Arranque en el modo de rescate.
-
-0fmemtest07
- Inicia el test de memoria para escanear la RAM en busca de errores.
-0ffloppy07, 0fdisk107 o 0fdisk207
- Arrancar desde el disquete, desde el primer o el segundo disco duro.
-
-
-
-Para usar uno de estos m‚todos, teclee uno en el indicador de ¢rdenes,
-seguido opcionalmente por uno de los par metros de arranque. Por ejemplo:
-
- boot: rescue acpi=off
-
-
-
-
-
-Pulse F1control y F, y luego 1 para ver el men£ de ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f4.txt.install.g-i b/templates/syslinux/es/f4.txt.install.g-i
deleted file mode 100644
index 1a717f1..0000000
--- a/templates/syslinux/es/f4.txt.install.g-i
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMODO DE RESCATE07 09F407
-
-0fSeleccione un m‚todo de arranque para rescatar una instalaci¢n existente07
-
-0frescue07
- Arranque en el modo de rescate.
-0frescuegui07
- Arranque en el modo de rescate usando el instalador gr fico.
-
-0fmemtest07
- Inicia el test de memoria para escanear la RAM en busca de errores.
-0ffloppy07, 0fdisk107 o 0fdisk207
- Arrancar desde el disquete, desde el primer o el segundo disco duro.
-
-Para usar uno de estos m‚todos, teclee uno en el indicador de ¢rdenes,
-seguido opcionalmente por uno de los par metros de arranque. Por ejemplo:
-
- boot: rescue acpi=off
-
-
-
-
-
-Pulse F1control y F, y luego 1 para ver el ¡ndice de ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f4.txt.live b/templates/syslinux/es/f4.txt.live
deleted file mode 100644
index c428f86..0000000
--- a/templates/syslinux/es/f4.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fOTROS M‚TODOS DE ARRANQUE07 09F407
-
-0fM‚todos de arranque disponibles:07
-
-0fmemtest07
- Inicia el test de memoria para escanear la RAM en busca de errores.
-0ffloppy07, 0fdisk107 o 0fdisk207
- Arrancar desde el disquete, desde el primer o el segundo disco duro.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Pulse F1control y F, y luego 1 para ver el men£ de ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f5.txt b/templates/syslinux/es/f5.txt
deleted file mode 100644
index 107019c..0000000
--- a/templates/syslinux/es/f5.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR METROS ESPECIALES DE ARRANQUE - RESUMEN07 09F507
-
-Puedes ser necesario a¤adir alg£n par metro para arrancar el equipo al
-indicador 0fboot:07 en algunos sistemas. Por ejemplo, si Linux no puede
-detectar autom ticamente alg£n dispositivo ser¡a necesario indicarle
-expl¡citametne su ubicaci¢n o tipo para que lo reconozca.
-
-Puede pulsar las siguientes teclas para obtener m s informaci¢n sobre los
-par metros de arranque que puede utilizar:
-
- <09F607> -- par metros de arranque para m quinas especiales
- <09F707> -- par metros de arranque para distintos controladores de disco
- <09F807> -- par metros de arranque que entiende el sistema de instalaci¢n
-
-Si desea especificar un par mentro para un m¢dulo particular del n£cleo puede
-utilizar el formato m¢dulo.par metro=valor.
-Por ejemplo: libata.atapi_enabled=1
-
-
-
-
-
-
-Pulse F1control y F, y entonces 1 para ver el men£ de ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f6.txt b/templates/syslinux/es/f6.txt
deleted file mode 100644
index 15e1bb8..0000000
--- a/templates/syslinux/es/f6.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR METROS ESPECIALES DE ARRANQUE - DIVERSOS DISPOSITIVOS07 09F607
-
-Puede usar los siguientes par metros en el indicador 0fboot:07,
-en combinaci¢n con el mŠtodo de arranque (vea <09F307>).
-Si usa n£meros hexadecimales se debe poner el prefijo 0x (p.ej., 0x300).
-0f
-DISPOSITIVOS PAR METRO PARA ESPECIFICAR07
-IBM PS/1 o ValuePoint (disco IDE) 0fhd=0bcilindros0f,0bcabezales0f,0bsectores07
-Algunos ThinkPads de IBM 0ffloppy.floppy=thinkpad07
-Proteger regiones de puertos I/O 0freserve=0biobase0f,0bextent07[0f,0b...07]
-Port tiles con problemas de pantalla 0fvga=77107
-Usar el primer puerto serie a 9600 baudios 0fconsole=ttyS0,9600n807
-Usar el controlador gen‚rico IDE 0fgeneric.all_generic_ide=107
-
-Posibles soluciones temporales a bloqueos o fallos de dispositivos:
-Desactivar enrutado de interrupciones APIC 0fnoapic nolapic07
-Desactivar parcialmente el ACPI 0facpi=noirq07 or 0facpi=off07
-Desactivar USB 0fnousb07
-
-Por ejemplo:
- boot: install vga=771 noapic nolapic
-
-
-Pulse F1control y F, y entonces 1 para ver el men£ de ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f7.txt b/templates/syslinux/es/f7.txt
deleted file mode 100644
index a3dfe2a..0000000
--- a/templates/syslinux/es/f7.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR METROS ESPECIALES DE ARRANQUE - VARIAS CONTROLADORAS DE DISCO07 09F707
-
-Puede usar los siguientes par metros de arranque en el indicador 0fboot:07,
-en combinaci¢n con los m‚todos de arranque (vea <09F307>).
-0f
-HARDWARE PAR METRO QUE SE DEBE ESPECIFICAR07
-Adaptec 151x, 152x 0faha152x.aha152x=0biobase07[0f,0birq07[0f,0bscsi-id07[0f,0breconnect07]]]
-Adaptec 1542 0faha1542.aha1542=0biobase07[0f,0bbuson0f,0bbusoff07[0f,0bdmaspeed07]]
-Adaptec 274x, 284x 0faic7xxx.aic7xxx=no_reset07 (enabled if non-zero)
-BusLogic SCSI Hosts 0fBusLogic.BusLogic=0biobase07
-Ciertas m quinas Dell 0faic7xxx.aic7xxx=no_probe07
-
-Hay m s par metros que los que aqu¡ se muestran; la lista completa est en
-el fichero kernel-parameters.txt de las fuentes del n£cleo.
-
-
-
-
-
-Por ejemplo:
- boot: install aic7xxx.aic7xxx=no_probe
-
-
-Pulse F1control y F, y entonces 1 para obtener ayuda, o INTRO para
\ No newline at end of file
diff --git a/templates/syslinux/es/f8.txt.install b/templates/syslinux/es/f8.txt.install
deleted file mode 100644
index 2828f23..0000000
--- a/templates/syslinux/es/f8.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR METROS ESPECIALES DE ARRANQUE - SISTEMA DE INSTALACI¢N07 09F807
-
-Puede usar los siguientes par metros de arranque en el indicador 0fboot:07,
-en combinaci¢n con los m‚todos de arranque (vea <09F307>). Estos
-par metros controlan el trabajo del instalador.
-0f
-RESULTADO PAR METRO07
-Depuraci¢n abundante 0fDEBCONF_DEBUG=507
-Depuraci¢n de la secuencia de arranque 0fBOOT_DEBUG=2|307
-Desactiva el "framebuffer" 0ffb=false07
-No inicia el sistema PCMCIA 0fhw-detect/start_pcmcia=false07
-Fuerza una configuraci¢n de red est tica 0fnetcfg/disable_dhcp=true07
-Escoge el mapa de teclado 0fbootkbd=es07
-Usa tty en braille 0fbrltty=driver,device,texttable07
-Da accesibilidad con tema de alto contraste 0ftheme=dark07
-Determina tareas especiales 0ftasks="kde-desktop, standard"07
-
-
-
-Por ejemplo:
- boot: install fb=false
-
-
-Pulse F1control y F, y entonces 1 para ver el men£ de ayuda, o INTRO para el
\ No newline at end of file
diff --git a/templates/syslinux/es/f8.txt.live b/templates/syslinux/es/f8.txt.live
deleted file mode 100644
index 65f21cc..0000000
--- a/templates/syslinux/es/f8.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPAR METROS ESPECIALES DE ARRANQUE - SISTEMA DE INSTALACI¢N07 09F807
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Pulse F1control y F, y entonces 1 para ver el men£ de ayuda, o INTRO para el
\ No newline at end of file
diff --git a/templates/syslinux/es/f9.txt.install b/templates/syslinux/es/f9.txt.install
deleted file mode 100644
index 09bf93d..0000000
--- a/templates/syslinux/es/f9.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fOBTENCI¢N DE AYUDA07 09F907
-
-Si no puede instalar este Debian, no se desespere! El equipo de Debian
-est preparado para ayudarle! Nos interesaa especialmente encontrar problemas
-de instalaci¢n, porque en general no ocurren solamente a 0funa07 persona.
-O bien ya habremos oido hablar de su problema y le podemos ofrecer una
-r pida soluci¢n, o bien nos gustar que nos lo explique e intentar arreglarlo
-juntos, y as¡ el proximo usuario que tenga el mismo problema podr
-beneficiarse de su esperi‚ncia!
-
-Vea el manual de instalaci¢n o las PUF (FAQ) para obtener m s informaci¢n;
-estos documentos est n disponibles en la web de Debian:
-0fhttp://www.debian.org/07
-
-Si no puede executar el sistema Debian Live, vea el manual de instalaci¢n o
-las PUF (FAQ) para m s informaci¢n; estos documentos est n disponibles en
-la web de Debian, 0fhttp://live.debian.net/07
-
-
-
-
-
-
-Pulse F1control y F, y entonces 1 para ver el men£ de ayuda, o INTRO para el
\ No newline at end of file
diff --git a/templates/syslinux/es/f9.txt.live b/templates/syslinux/es/f9.txt.live
deleted file mode 100644
index 1ed589f..0000000
--- a/templates/syslinux/es/f9.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fOBTENCI¢N DE AYUDA07 09F907
-
-Si no puede ejecutar este Debian, no se desespere! El equipo de Debian
-est preparado para ayudarle! Nos interesaa especialmente encontrar problemas
-de arranque, porque en general no ocurren solamente a 0funa07 persona.
-O bien ya habremos oido hablar de su problema y le podemos ofrecer una
-r pida soluci¢n, o bien nos gustar que nos lo explique e intentar arreglarlo
-juntos, y as¡ el proximo usuario que tenga el mismo problema podr
-beneficiarse de su esperiencia!
-
-Vea el manual del Debian Live o las PUF (FAQ) para obtener m s informaci¢n;
-estos documentos est n disponibles en la web de Debian:
-0fhttp://live.debian.net/07
-
-
-
-
-
-
-
-
-
-
-Pulse F1control y F, y entonces 1 para ver el men£ de ayuda, o INTRO para el
\ No newline at end of file
diff --git a/templates/syslinux/menu/exithelp.cfg b/templates/syslinux/menu/exithelp.cfg
deleted file mode 100644
index a538904..0000000
--- a/templates/syslinux/menu/exithelp.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-label menu
- kernel {$LIVE_DATA_PATH}/vesamenu.c32
- config isolinux.cfg
diff --git a/templates/syslinux/menu/menu.cfg b/templates/syslinux/menu/menu.cfg
deleted file mode 100644
index a74b4d5..0000000
--- a/templates/syslinux/menu/menu.cfg
+++ /dev/null
@@ -1,12 +0,0 @@
-menu hshift 13
-menu width 49
-
-menu title Boot menu
-include stdmenu.cfg
-include live.cfg
-label help
- menu label ^Help
- text help
- Display help screens; type 'menu' at boot prompt to return to this menu
- endtext
- config prompt.cfg
diff --git a/templates/syslinux/menu/prompt.cfg b/templates/syslinux/menu/prompt.cfg
deleted file mode 100644
index 691ebda..0000000
--- a/templates/syslinux/menu/prompt.cfg
+++ /dev/null
@@ -1,16 +0,0 @@
-prompt 1
-display f1.txt
-timeout 0
-include menu.cfg
-include exithelp.cfg
-
-f1 f1.txt
-f2 f2.txt
-f3 f3.txt
-f4 f4.txt
-f5 f5.txt
-f6 f6.txt
-f7 f7.txt
-f8 f8.txt
-f9 f9.txt
-f0 f10.txt
diff --git a/templates/syslinux/menu/splash.png b/templates/syslinux/menu/splash.png
deleted file mode 100644
index 6065918..0000000
Binary files a/templates/syslinux/menu/splash.png and /dev/null differ
diff --git a/templates/syslinux/menu/stdmenu.cfg b/templates/syslinux/menu/stdmenu.cfg
deleted file mode 100644
index 9b10dea..0000000
--- a/templates/syslinux/menu/stdmenu.cfg
+++ /dev/null
@@ -1,15 +0,0 @@
-menu background {$SPLASH}
-menu color title * #FFFFFFFF *
-menu color border * #00000000 #00000000 none
-menu color sel * #ffffffff #76a1d0ff *
-menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff *
-menu color tabmsg * #ffffffff #00000000 *
-menu color help 37;40 #ffdddd00 #00000000 none
-menu vshift 12
-menu rows 10
-menu helpmsgrow 15
-# The command line must be at least one line from the bottom.
-menu cmdlinerow 16
-menu timeoutrow 16
-menu tabmsgrow 18
-menu tabmsg Press ENTER to boot or TAB to edit a menu entry
diff --git a/templates/syslinux/menu/syslinux.cfg b/templates/syslinux/menu/syslinux.cfg
deleted file mode 100644
index 3397e3c..0000000
--- a/templates/syslinux/menu/syslinux.cfg
+++ /dev/null
@@ -1,4 +0,0 @@
-include menu.cfg
-default {$LIVE_DATA_PATH}/vesamenu.c32
-prompt 0
-timeout {$LB_SYSLINUX_TIMEOUT}
diff --git a/templates/syslinux/normal/footer.cfg b/templates/syslinux/normal/footer.cfg
deleted file mode 100644
index e69de29..0000000
diff --git a/templates/syslinux/normal/header.cfg b/templates/syslinux/normal/header.cfg
deleted file mode 100644
index 26e3115..0000000
--- a/templates/syslinux/normal/header.cfg
+++ /dev/null
@@ -1 +0,0 @@
-include {$LIVE_SCREEN_PATH}/prompt.cfg
diff --git a/templates/syslinux/normal/help.cfg b/templates/syslinux/normal/help.cfg
deleted file mode 100644
index 414f388..0000000
--- a/templates/syslinux/normal/help.cfg
+++ /dev/null
@@ -1,10 +0,0 @@
-f1 {$LIVE_SCREEN_PATH}/f1.txt
-f2 {$LIVE_SCREEN_PATH}/f2.txt
-f3 {$LIVE_SCREEN_PATH}/f3.txt
-f4 {$LIVE_SCREEN_PATH}/f4.txt
-f5 {$LIVE_SCREEN_PATH}/f5.txt
-f6 {$LIVE_SCREEN_PATH}/f6.txt
-f7 {$LIVE_SCREEN_PATH}/f7.txt
-f8 {$LIVE_SCREEN_PATH}/f8.txt
-f9 {$LIVE_SCREEN_PATH}/f9.txt
-f0 {$LIVE_SCREEN_PATH}/f10.txt
diff --git a/templates/syslinux/normal/prompt.cfg b/templates/syslinux/normal/prompt.cfg
deleted file mode 100644
index 5f64eb6..0000000
--- a/templates/syslinux/normal/prompt.cfg
+++ /dev/null
@@ -1,6 +0,0 @@
-prompt 1
-timeout {$LB_SYSLINUX_TIMEOUT}
-default live
-display {$LIVE_SCREEN_PATH}/boot.txt
-include {$LIVE_SCREEN_PATH}/menu.cfg
-include {$LIVE_SCREEN_PATH}/help.cfg
diff --git a/templates/syslinux/normal/splash.rle b/templates/syslinux/normal/splash.rle
deleted file mode 100644
index df3e15d..0000000
Binary files a/templates/syslinux/normal/splash.rle and /dev/null differ
diff --git a/templates/syslinux/normal/syslinux.cfg b/templates/syslinux/normal/syslinux.cfg
deleted file mode 100644
index 3e2682e..0000000
--- a/templates/syslinux/normal/syslinux.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-include {$LIVE_SCREEN_PATH}/header.cfg
-include {$LIVE_SCREEN_PATH}/menu.cfg
-include {$LIVE_SCREEN_PATH}/footer.cfg
diff --git a/templates/syslinux/pt_BR/boot.txt b/templates/syslinux/pt_BR/boot.txt
deleted file mode 100644
index 5ad488c..0000000
--- a/templates/syslinux/pt_BR/boot.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-{$SPLASH}
-
-Pressione F1control e F seguido de 1 para ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f1.txt.install b/templates/syslinux/pt_BR/f1.txt.install
deleted file mode 100644
index d21c1e8..0000000
--- a/templates/syslinux/pt_BR/f1.txt.install
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fBem vindo(a) ao Debian GNU/Linux!07 09F107
-
-Este é o Debian {$LB_DISTRIBUTION} combinando um sistema live e instalação
-{$LB_MEDIA}. Ele foi construÃdo em {$LB_DATE}.
-
-0fÃNDICE DE AJUDA07
-
-0fTECLA TÓPICO07
-
-<09F107> Página atual, o Ãndice de ajuda.
-<09F207> Pre-requisitos para instalar o Debian.
-<09F307> Métodos especiais de inicialização para usar neste {$LB_MEDIA}
-<09F407> Métodos adicionais de inicialização; modo de recuperação.
-<09F507> Parâmetros de inicialização especiais, visão geral.
-<09F607> Parâmetros de inicialização especiais para máquinas especÃficas.
-<09F707> Parâmetros de inicialização especiais para controladores de disco selecionados.
-<09F807> Parâmetros de inicialização especiais para o sistema de instalação.
-<09F907> Como obter ajuda.
-<09F1007> Direitos de cópia e garantias.
-
-Para F1-F9 digite control e F e em seguinte os dÃgitos 1-9
-Para F10 digite control e F e em seguinte o dÃgito 0
-
-
-
-Pressione F2 a F10 para detalhes, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f1.txt.live b/templates/syslinux/pt_BR/f1.txt.live
deleted file mode 100644
index db5c045..0000000
--- a/templates/syslinux/pt_BR/f1.txt.live
+++ /dev/null
@@ -1,26 +0,0 @@
- 0fBem vindo(a) ao Debian GNU/Linux!07 09F107
-
-Este é o Debian {$LB_DISTRIBUTION} live {$LB_MEDIA}.
-{$LB_MEDIA}. Ele foi construÃdo em {$LB_DATE}.
-
-0fÃNDICE DE AJUDA07
-
-0fTECLA TÓPICO07
-
-<09F107> Página atual, o Ãndice de ajuda.
-<09F207> Pre-requisitos para instalar o Debian.
-<09F307> Métodos especiais de inicialização para usar neste {$LB_MEDIA}
-<09F407> Métodos adicionais de inicialização.
-<09F507> Parâmetros de inicialização especiais, visão geral.
-<09F607> Parâmetros de inicialização especiais para máquinas especÃficas.
-<09F707> Parâmetros de inicialização especiais para controladores de disco selecionados.
-<09F807> Parâmetros de inicialização especiais para o sistema de instalação.
-<09F907> Como obter ajuda.
-<09F1007> Direitos de cópia e garantias.
-
-Para F1-F9 digite control e F e em seguinte os dÃgitos 1-9
-Para F10 digite control e F e em seguinte o dÃgito 0
-
-
-
-Pressione F2 a F10 para detalhes, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f10.txt b/templates/syslinux/pt_BR/f10.txt
deleted file mode 100644
index a11b734..0000000
--- a/templates/syslinux/pt_BR/f10.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-0fDIREITOS DE CÓPIA E GARANTIAS07 09F1007
-
-Debian GNU/Linux é uma marca registrada da Software in the Public Interest,
-Inc. e outros.
-
-O sistema Debian GNU/Linux é livremente distribuÃvel. Após a instalação, os
-termos exatos de licença para cada pacote são descritos no arquivo
-correspondente em /usr/share/doc/0bnomedopacote07/copyright.
-
-O Debian GNU/Linux é distribuÃdo sem 0fNENHUMA GARANTIA07, limitando-se ao
-permitido pela lei aplicável.
-
-
----
-
-Este sistema Live do Debian foi construÃdo com live-build, versão {$LB_VERSION}.
-
-Mais informações sobre o projeto Debian Live podem ser encontrada em
-<http://live.debian.net/>.
-
-
-
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f2.txt.install b/templates/syslinux/pt_BR/f2.txt.install
deleted file mode 100644
index 0ce1fbe..0000000
--- a/templates/syslinux/pt_BR/f2.txt.install
+++ /dev/null
@@ -1,28 +0,0 @@
-0fPRÉ-REQUISITOS PARA USAR O DEBIAN07 09F207
-
-Você deve possuir pelo menos 64 megabytes de memória fÃsica (RAM) para rodar
-este sistema Debian Live.
-
-Veja o Manual do Debian Live ou as Perguntas Mais Frequentes (FAQ) para mais
-informações; ambos os documentos estão disponÃveis no sÃtio web do Debian Live,
-0fhttp://live.debian.net/07
-
-
-Você deve possuir no mÃnimo 44 megabytes de memória fÃsica (RAM) para usar o
-Debian Installer.
-
-Você deve possuir espaço no seu disco rÃgido para criar uma nova partição de no
-mÃnimo 500 megabytes para instalar o sistema básico. Você necessitará mais
-espaço para instalar pacotes adicionais, dependendo do que você queira fazer
-com o seu novo sistema Debian.
-
-Veja o Guia de Instalação ou as Perguntas Mais Frequentes (FAQ) para mais
-informações. Ambos os documentos estão disponÃveis no sÃtio web do Debian,
-0fhttp://www.debian.org/07
-
-Obrigado por escolher o Debian!
-
-
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f2.txt.live b/templates/syslinux/pt_BR/f2.txt.live
deleted file mode 100644
index 6f23718..0000000
--- a/templates/syslinux/pt_BR/f2.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPRÉ-REQUISITOS PARA RODAR O DEBIAN07 09F207
-
-Você deve possuir no mÃnimo 64 megabytes de memória fÃsica (RAM) para rodar
-este sistema Debian Live.
-
-Veja o manual do sistema Live ou as Perguntas Mais Frequentes (FAQ) para mais informações. Ambos os documentos estão disponÃveis no sÃtio web do Debian Live, 0fhttp://live.debian.net/07
-
-Obrigado por escolher o Debian!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Pressione F1control e F seguido 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f3.txt.install b/templates/syslinux/pt_BR/f3.txt.install
deleted file mode 100644
index d6017f9..0000000
--- a/templates/syslinux/pt_BR/f3.txt.install
+++ /dev/null
@@ -1,25 +0,0 @@
-0fMÉTODOS DE INICIALIZAÇÃO07 09F307
-
-0fMétodos de inicilização disponÃveis:07
-
-0flive07
- Inicia o sistema live -- este é o método {$LB_MEDIA} padrão.
-0flivefailsafe07
- Inicia o sistema live em modo de segurança (fail-safe).
-0finstall07
- Inicia a instalação.
-0fexpert07
- Inicia a instalação em modo avançado, para máximo controle.
-
-Para usar um desses métodos de inicialização, digite-o no prompt, opcionalmente
-seguido de algum parâmetro de inicialização. Por exemplo:
- boot: install acpi=off
-
-
-Caso não tenha certeza, use o método de inicialização padrão, sem parâmetros
-especiais, simplesmente pressionando enter no prompt de inicialização.
-
-Exceto para o modo avançado, mensagens de incialização do kernel serão omitidas.
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f3.txt.install.g-i b/templates/syslinux/pt_BR/f3.txt.install.g-i
deleted file mode 100644
index 9a6b7cc..0000000
--- a/templates/syslinux/pt_BR/f3.txt.install.g-i
+++ /dev/null
@@ -1,25 +0,0 @@
-0fMÉTODOS DE INICIALIZAÇÃO07 09F307
-
-0fmétodos de inicilização disponÃveis:07
-
-0flive07
- Inicia o sistema live -- este é o método {$LB_MEDIA} padrão.
-0flivefailsafe07
- Inicia o sistema live em modo de segurança (fail-safe).
-0finstall07 ou 0finstallgui07
- Inicia a instalação usando o instalador normal ou o instalador gráfico.
-0fexpert07 ou 0fexpertgui07
- Inicia a instalação em modo avançado, para máximo controle.
-
-Para usar um desses métodos de inicialização, digite-o no prompt, opcionalmente
-seguido de algum parâmetro de inicialização. Por exemplo:
- boot: install acpi=off
-
-
-Caso não tenha certeza, use o método de inicialização padrão, sem parâmetros
-especiais, simplesmente pressionando enter no prompt de inicialização.
-
-Exceto para o modo avançado, mensagens de incialização do kernel serão omitidas.
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f3.txt.live b/templates/syslinux/pt_BR/f3.txt.live
deleted file mode 100644
index d83060d..0000000
--- a/templates/syslinux/pt_BR/f3.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMÉTODOS DE INCIALIZAÇÃO07 09F307
-
-0fMétodos de inicialização disponÃveis:07
-
-0flive07
- Inicia o sistema live -- este é o método {$LB_MEDIA} padrão.
-0flivefailsafe07
- Inicia o sistema live em modo de segurança (fail-safe).
-
-
-
-
-
-
-
-Para usar um desses métodos de inicialização, digite-o no prompt, opcionalmente
-seguido de algum parâmetro de inicialização. Por exemplo:
- boot: live acpi=off
-
-Caso não tenha certeza, use o método de inicialização padrão, sem parâmetros
-especiais, simplesmente pressionando enter no prompt de inicialização.
-
-
-Pressione F1control e F segudo de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f4.txt.install b/templates/syslinux/pt_BR/f4.txt.install
deleted file mode 100644
index 8738246..0000000
--- a/templates/syslinux/pt_BR/f4.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMODO DE RECUPERAÇÃO07 09F407
-
-0fUse um desses métodos de inicialização para recuperar uma instalação existente:07
-
-0frescue07
- Inicializa dentro do modo de recuperação.
-
-0fmemtest07
- Inicia teste de memória (memtest) para varrer sua RAM em busca de erros.
-0ffloppy07, 0fdisk107 or 0fdisk207
- Inicia a partir do disquete, primeiro ou segundo disco rÃgido.
-
-
-
-Para usar um desses métodos de inicialização, digite-o no prompt, opcionalmente
-seguido de algum parâmetro de inicialização. Por exemplo:
-
- boot: rescue acpi=off
-
-
-
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f4.txt.install.g-i b/templates/syslinux/pt_BR/f4.txt.install.g-i
deleted file mode 100644
index fb18e6c..0000000
--- a/templates/syslinux/pt_BR/f4.txt.install.g-i
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMODO DE RECUPERAÇÃO07 09F407
-
-0fUse um desses métodos de inicialização para recuperar uma instalação existente:07
-
-0frescue07
- Inicializa em modo de recuperação.
-0frescue07
- Inicializa em modo de recuperação utilizando o instalador gráfico.
-
-0fmemtest07
- Inicia teste de memória (memtest) para varrer sua RAM em busca de erros.
-0ffloppy07, 0fdisk107 or 0fdisk207
- Inicia a partir do disquete, primeiro ou segundo disco rÃgido.
-
-Para usar um desses métodos de inicialização, digite-o no prompt, opcionalmente
-seguido de algum parâmetro de inicialização. Por exemplo:
-
- boot: rescue acpi=off
-
-
-
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f4.txt.live b/templates/syslinux/pt_BR/f4.txt.live
deleted file mode 100644
index 63bf2e7..0000000
--- a/templates/syslinux/pt_BR/f4.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fMÉTODOS ADICIONAIS DE INICIALIZAÇÃO07 09F407
-
-0fMétodos de inicialização disponÃveis:07
-
-0fmemtest07
- Inicia (teste de memória) memtest para varrer sua memória RAM em busca de erros.
-0ffloppy07, 0fdisk107 or 0fdisk207
- Inicia pelo disquete, primeiro ou segundo disco rÃgido.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Pressione F1control e F seguido de 1 o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f5.txt b/templates/syslinux/pt_BR/f5.txt
deleted file mode 100644
index c0248d1..0000000
--- a/templates/syslinux/pt_BR/f5.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-0fPARÂMETROS ESPECIAIS DE INICIALIZAÇÃO - VISÃO GERAL07 09F507
-
-Em alguns poucos sistemas, você pode precisar especificar um parâmetro no
-prompt 0fboot:07 para que consiga incializar o sistema. Por exemplo, o
-Linux pode não estar apto a detectar automaticamente seu hardware, e você
-talvez necessite especificar sua localização ou tipo para que seja reconhecido.
-
-Para mais informações sober quais parâmetros de inicialização você pode usar,
-pressione:
-
- <09F607> -- parâmetros de inicialização para máquinas especÃficas
- <09F707> -- parâmetros de inicialização para controladores de disco diversos
- <09F807> -- parâmetros de inicialização reconhecido pelo sistema de instalação
-
-Note que para especificar um parâmetro para um módulo do kernel em particular, use a forma
-módulo.parametro=valor, por exemplo: libdata.atapi_enabled=1
-
-
-
-
-
-
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f6.txt b/templates/syslinux/pt_BR/f6.txt
deleted file mode 100644
index 4e6736f..0000000
--- a/templates/syslinux/pt_BR/f6.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-0fPARÂMETROS ESPECIAIS DE INICIALIZAÇÃO - HARDWARES DIVERSOS07 09F607
-
-Você pode utilizar os seguintes parâmetros de inicialização no prompt
-0fboot:07, em combinação com o método de inicialização (veja <09F307>).
-Se você utilizar números em base hexadecimal você deve usar o prefixo 0x (e.g.,
-0x300).
-0f
-HARDWARE PARÂMETRO A ESPECIFICAR07
-IBM PS/1 ou ValuePoint (disco IDE) 0fhd=0bcylinders0f,0bheads0f,0bsectors07
-Alguns ThinkPads IBM 0ffloppy.floppy=thinkpad07
-Protege regiões de portas de E/S 0freserve=0biobase0f,0bextent07[0f,0b...07]
-Laptops com problemas de display 0fvga=77107
-Usa primeira porta serial a 9600 baud 0fconsole=ttyS0,9600n807
-Força o uso de um driver IDE genérico 0fgeneric.all_generic_ide=107
-
-PossÃveis (temporários) contornos para travamentos ou outras falhas de hardware:
-desabilita roteamento de interrupções ACPI problemáticas 0fnoapic nolapic07
-(parcialmente) desabilita ACPI 0facpi=noirq07 or 0facpi=off07
-desabilita USB 0fnousb07
-
-Por exemplo:
- boot: install vga=771 noapic nolapic
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f7.txt b/templates/syslinux/pt_BR/f7.txt
deleted file mode 100644
index a3fe9dd..0000000
--- a/templates/syslinux/pt_BR/f7.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPARÂMETROS ESPECIAIS DE INICIALIZAÇÃO - VÃRIOS DRIVES DE DISCO07 09F707
-
-Você pode utilizar os seguintes parâmetros de inicialização no prompt
-0fboot:07. em combinação com o método de inicializaçãoi (veja
-<09F307>).
-0f
-HARDWARE PARÂMETROS A ESPECIFICAR07
-Adaptec 151x, 152x 0faha152x.aha152x=0biobase07[0f,0birq07[0f,0bscsi-id07[0f,0breconnect07]]]
-Adaptec 1542 0faha1542.aha1542=0biobase07[0f,0bbuson0f,0bbusoff07[0f,0bdmaspeed07]]
-Adaptec 274x, 284x 0faic7xxx.aic7xxx=no_reset07 (enabled if non-zero)
-BusLogic SCSI Hosts 0fBusLogic.BusLogic=0biobase07
-Certas máquinas DELL 0faic7xxx.aic7xxx=no_probe07
-
-Este lista está incompleta, veja o arquivo kernel-parameters.txt para conhecer mais.
-
-
-
-
-
-Por exemplo:
- boot: install aic7xxx.aic7xxx=no_probe
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f8.txt.install b/templates/syslinux/pt_BR/f8.txt.install
deleted file mode 100644
index 777d836..0000000
--- a/templates/syslinux/pt_BR/f8.txt.install
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPARÂMETROS ESPECIAIS DE INICIALIZAÇÃO - SISTEMA DE INSTALAÇÃO07 09F807
-
-Você pode utilizar os seguintes parâmetros de inicialização no prompt
-0fboot:07, em combinação com o método de inicialização (veja <09F307>).
-Estes parâmetros controlam o funcionamento do instalador.
-
-0f
-RESULTADO PARÂMETRO07
-NÃvel de depuração 0fDEBCONF_DEBUG=507
-Depuração de sequência de incialização 0fBOOT_DEBUG=2|307
-Desabilita framebuffer 0ffb=false07
-Não incializa PCMCIA 0fhw-detect/start_pcmcia=false07
-Força configuração estática de rede 0fnetcfg/disable_dhcp=true07
-Seta mapa de teclado 0fbootkbd=es07
-Usa tty Braille 0fbrltty=driver,device,texttable07
-Usa um tema de alto contraste para acessibilidade 0ftheme=dark07
-Usa tarefas (tasks) especÃficas 0ftasks="kde-desktop, standard"07
-
-
-
-Por exemplo:
- boot: install fb=false
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f8.txt.live b/templates/syslinux/pt_BR/f8.txt.live
deleted file mode 100644
index e2fa808..0000000
--- a/templates/syslinux/pt_BR/f8.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fPARÂMETROS ESPECIAIS DE INICIALIZAÇÃO07 09F807
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Pressione F1control e F seguido de 1 para Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f9.txt.install b/templates/syslinux/pt_BR/f9.txt.install
deleted file mode 100644
index fcbbe36..0000000
--- a/templates/syslinux/pt_BR/f9.txt.install
+++ /dev/null
@@ -1,27 +0,0 @@
-0fOBTENDO AJUDA07 09F907
-
-Se você não conseguir instalar o Debian, não se desespere! O time do Debian
-está pronto para te ajudar! Nós estamos especialmente interessados em conhecer
-os problemas de instalação, porque em geral eles não ocorrem para apenas
-0fone07 pessoa.
-
-Ou nós já temos conhecimento sobre seu problema em particular e podemos
-oferecer uma solução rápida, ou nós gostarÃamos de ouvÃr sobre ele e trabalhar
-nele com você, de forma que o próximo usuário que tiver o mesmo problema seja
-beneficiado com esta sua experiência.
-
-Veja o Guia de Instalação ou as Perguntas Mais Frequentes (FAQ) para mais
-informações; ambos documentos estão disponÃveis no sÃtio web do Debian,
-0fhttp://www.debian.org/07
-
-Se você não consegue rodar o sistema Debian Live, veja o manual ou as Perguntas
-Mais Frequentes (FAQ) para mais informações; ambos os documentos estão
-disponÃveis no sÃtio web do Debian Live, 0fhttp://live.debian.net/07
-
-
-
-
-
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
diff --git a/templates/syslinux/pt_BR/f9.txt.live b/templates/syslinux/pt_BR/f9.txt.live
deleted file mode 100644
index b5e5b7c..0000000
--- a/templates/syslinux/pt_BR/f9.txt.live
+++ /dev/null
@@ -1,24 +0,0 @@
-0fGETTING HELP07 09F907
-
-Se você não conseguir instalar o Debian, não se desespere! O time do Debian
-está pronto para te ajudar! Nós estamos especialmente interessados em conhecer
-os problemas de instalação, porque em geral eles não ocorrem para apenas
-0fone07 pessoa. Ou nós já temos conhecimento sobre seu problema em
-particular e podemos oferecer uma solução rápida, ou nós gostarÃamos de ouvÃr
-sobre ele e trabalhar nele com você, de forma que o próximo usuário que tiver o
-mesmo problema seja beneficiado com esta sua experiência.
-
-Veja o Manual do sistema Live ou as Perguntas Mais Frequentes (FAQ) para mais
-informações; ambos os documentos estão disponÃveis no sÃtio web do Debian Live,
-0fhttp://live.debian.net/07
-
-
-
-
-
-
-
-
-
-
-Pressione F1control e F seguido de 1 para o Ãndice de ajuda, ou ENTER para
--
live-build
More information about the debian-live-changes
mailing list